diff options
author | titer <[email protected]> | 2006-01-16 21:27:37 +0000 |
---|---|---|
committer | titer <[email protected]> | 2006-01-16 21:27:37 +0000 |
commit | 2d3032c28c89cead061987739ccc3c32fb2d8cf5 (patch) | |
tree | 5c8bd76bb518948d5356d6f010f334b57b41e46d /contrib/Jamfile | |
parent | 858555894dacb9cece778b4d49f693db0a29d473 (diff) |
Now use SSE-optimized xvid and x264
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@21 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib/Jamfile')
-rw-r--r-- | contrib/Jamfile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/contrib/Jamfile b/contrib/Jamfile index 2ba2aa492..643840386 100644 --- a/contrib/Jamfile +++ b/contrib/Jamfile @@ -258,10 +258,6 @@ LibX264 $(SUBDIR)/lib/libx264.a : $(SUBDIR)/x264.tar.gz ; # libxvidcore rule LibXvidCore { - if $(OS) = MACOSX && $(OSPLAT) = X86 - { - XVID_OPTIONS = --disable-assembly ; - } Depends $(<) : $(>) ; Depends lib : $(<) ; } @@ -269,8 +265,8 @@ actions LibXvidCore { cd `dirname $(>)` && CONTRIB=`pwd` && rm -rf xvidcore && tar xzf xvidcore.tar.gz && - cd xvidcore/build/generic/ && ./configure $(XVID_OPTIONS) && - make libxvidcore.a && + cd xvidcore && patch -p1 < ../xvidcore.patch && + cd build/generic/ && ./configure && make libxvidcore.a && cp ./=build/libxvidcore.a $CONTRIB/lib/ && cp ../../src/xvid.h $CONTRIB/include/ && strip -S $CONTRIB/lib/libxvidcore.a |