summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authordynaflash <[email protected]>2007-11-26 16:22:15 +0000
committerdynaflash <[email protected]>2007-11-26 16:22:15 +0000
commitd904fb456d4bd95742ae21fdfff8f99b4c086e01 (patch)
tree32e052ac2ad66b471b6435c1858cb70c5d805e80 /contrib
parentb414e35dce7ee86da8229ce2a9c04ecc7c890955 (diff)
Fix Previous Bad Commit (1077)
Mac OSX 10.5 Leopard / Xcode 3 Compatibility - Builds using jam on Leopard with Xcode 3 using the 10.5 sdk - Will NOT build on Tiger. Leopard only. - Contrib packs are not updated. Jam build only for now. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1078 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib')
-rw-r--r--contrib/Jamfile9
1 files changed, 2 insertions, 7 deletions
diff --git a/contrib/Jamfile b/contrib/Jamfile
index f597eac33..86d35a536 100644
--- a/contrib/Jamfile
+++ b/contrib/Jamfile
@@ -351,11 +351,7 @@ LibVorbisEnc $(SUBDIR)/lib/libvorbisenc.a : $(SUBDIR)/lib/libvorbis.a ;
rule LibX264
{
LIBX264_PATCH = "" ;
- if $(OS) = MACOSX && $(OSPLAT) = X86
- {
- LIBX264_PATCH += "$(PATCH) -p1 < ../patch-x264-macintel.patch && " ;
- }
- else if $(OS) = CYGWIN
+ if $(OS) = CYGWIN
{
LIBX264_PATCH += "$(PATCH) -p1 < ../patch-x264-cygwin.patch && " ;
}
@@ -374,8 +370,7 @@ actions LibX264
rm -rf x264 && (gzip -dc x264.tar.gz | tar xf - ) &&
cd x264 && $(LIBX264_PATCH)
bash ./configure --prefix=$CONTRIB --enable-pthread &&
- $(MAKE) && $(MAKE) install &&
- $(STRIP) $CONTRIB/lib/libx264.a
+ $(MAKE) libx264.a && cp libx264.a $CONTRIB/lib/ && cp x264.h $CONTRIB/include/ && $(STRIP) $CONTRIB/lib/libx264.a
}
Wget $(SUBDIR)/x264.tar.gz : $(SUBDIR)/version_x264.txt ;
LibX264 $(SUBDIR)/lib/libx264.a : $(SUBDIR)/x264.tar.gz ;