diff options
author | eddyg <[email protected]> | 2008-08-18 20:39:43 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2008-08-18 20:39:43 +0000 |
commit | 362599089c997ba3366015f65f3d061b918fb76e (patch) | |
tree | 47373c7291e90cf88a221c4147c1ef1c4f1a996c /contrib/Jamfile | |
parent | a21b52d9349c3e5f73c895beaec9e5e6f36403f3 (diff) |
Don't allow theora to use pkg-config and use system versions of ogg and vorbis
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1644 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib/Jamfile')
-rw-r--r-- | contrib/Jamfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/Jamfile b/contrib/Jamfile index 98b310bdc..b3a8545db 100644 --- a/contrib/Jamfile +++ b/contrib/Jamfile @@ -391,6 +391,7 @@ actions LibTheora { cd `dirname $(>)` && CONTRIB=`pwd` && rm -rf libtheora && (gzip -dc libtheora.tar.gz | tar xf - ) && cd libtheora && + export HAVE_PKG_CONFIG="no" && ./configure --prefix=$CONTRIB --with-ogg=$CONTRIB --with-vorbis=$CONTRIB --cache-file=$CONTRIB/config.cache --disable-shared \ --disable-oggtest --disable-vorbistest --disable-sdltest --disable-examples && $(MAKE) && $(MAKE) install && |