From 59767f324b3b9f2c1190db1348a72b38eb818f81 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sat, 7 Jun 2008 17:36:33 +0000 Subject: [PATCH] boost=system fixes to Jamfile --- Jamfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Jamfile b/Jamfile index 847568222..34146b25c 100755 --- a/Jamfile +++ b/Jamfile @@ -117,6 +117,15 @@ rule linking ( properties * ) ; } + if system in $(properties) + { + # on mac the boost headers are installed in + # a directory that isn't automatically accessable + result += /opt/local/include/boost-1_35 + /opt/local/include/boost + ; + } + return $(result) ; } @@ -238,6 +247,7 @@ local library-search-path = /opt/local/lib /usr/lib /usr lib boost_filesystem : : boost_filesystem $(library-search-path) ; lib boost_thread : : boost_thread $(library-search-path) ; lib boost_iostreams : : boost_iostreams $(library-search-path) ; +lib boost_system : : boost_system $(library-search-path) ; # openssl on linux/bsd/macos etc. lib crypto : : crypto ;