diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2011-11-24 01:26:34 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2011-11-24 01:26:34 (GMT) |
commit | 0db6e95e2de1c59a3587eb590e930f0f1e74876e (patch) | |
tree | 08cf4dec262059b7efea830e9cf1a3d36dcbfe48 /scripts/macosx-build-dependencies.sh | |
parent | cea502f9a3531888dbbb55099421fb1ab565f2c1 (diff) | |
parent | e0b5f3f33d974b60daf88a28ce86dc6013f44746 (diff) |
Merge remote branch 'upstream/master' into cakebaby
Diffstat (limited to 'scripts/macosx-build-dependencies.sh')
-rwxr-xr-x | scripts/macosx-build-dependencies.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/macosx-build-dependencies.sh b/scripts/macosx-build-dependencies.sh index 29da173..32b15cd 100755 --- a/scripts/macosx-build-dependencies.sh +++ b/scripts/macosx-build-dependencies.sh @@ -140,11 +140,12 @@ build_boost() tar xjf boost_$bversion.tar.bz2 cd boost_$bversion # We only need the thread and program_options libraries - ./bootstrap.sh --prefix=$DEPLOYDIR --with-libraries=thread,program_options + ./bootstrap.sh --prefix=$DEPLOYDIR --with-libraries=thread,program_options,filesystem ./bjam cflags="-mmacosx-version-min=10.5 -arch i386 -arch x86_64" linkflags="-mmacosx-version-min=10.5 -arch i386 -arch x86_64" ./bjam install install_name_tool -id $DEPLOYDIR/lib/libboost_thread.dylib $DEPLOYDIR/lib/libboost_thread.dylib install_name_tool -id $DEPLOYDIR/lib/libboost_program_options.dylib $DEPLOYDIR/lib/libboost_program_options.dylib + install_name_tool -id $DEPLOYDIR/lib/libboost_filesystem.dylib $DEPLOYDIR/lib/libboost_filesystem.dylib } build_cgal() |