diff options
author | Marius Kintel <marius@kintel.net> | 2011-11-22 11:00:49 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-11-22 11:00:49 (GMT) |
commit | 077a914ac68c3b32d2633bc7d0bb9b11f4544569 (patch) | |
tree | 83571f60d4f7a759a331372373843b700806dc0b /scripts/macosx-build-dependencies.sh | |
parent | b211fe5158160910c73397bc401fb846c45a7295 (diff) |
Upgraded to boost 1.48, added boost filesystem
Diffstat (limited to 'scripts/macosx-build-dependencies.sh')
-rwxr-xr-x | scripts/macosx-build-dependencies.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/macosx-build-dependencies.sh b/scripts/macosx-build-dependencies.sh index 29da173..6b86fde 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() @@ -197,7 +198,7 @@ echo "Using basedir:" $BASEDIR mkdir -p $SRCDIR $DEPLOYDIR build_gmp 5.0.2 build_mpfr 3.1.0 -build_boost 1.47.0 +build_boost 1.48.0 # NB! For CGAL, also update the actual download URL in the function build_cgal 3.9 build_glew 1.7.0 |