From 4b8640ee29f901b324f3370597dd8755c423f573 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sun, 8 Jul 2007 20:21:22 +0000 Subject: [PATCH] added library search paths for boost to cover darwinports and fink --- Jamfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Jamfile b/Jamfile index 4dc25ae1b..b50efb3b9 100755 --- a/Jamfile +++ b/Jamfile @@ -149,8 +149,10 @@ lib user32 : : User32 ; lib shell32 : : shell32 ; lib gdi32 : : gdi32 ; -lib filesystem : : boost_filesystem ; -lib thread : : boost_thread ; +local library-search-path = /opt/local/lib /usr/lib /usr/local/lib /sw/lib ; + +lib filesystem : : boost_filesystem $(library-search-path) ; +lib thread : : boost_thread $(library-search-path) ; # openssl on linux/bsd/macos etc. lib crypto : : crypto ;