From 5ddb988461cf703854677ce08e57334808127f86 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Mon, 2 Nov 2009 01:10:05 +0000 Subject: [PATCH] link dynamically to external libraries by default --- Jamfile | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Jamfile b/Jamfile index 021866189..42346481a 100755 --- a/Jamfile +++ b/Jamfile @@ -293,26 +293,26 @@ lib boost_system : : darwin boost_system-mt $(boost-library-sea lib boost_system : : boost_system ; # openssl on linux/bsd/macos etc. -lib crypto : : crypto ; -lib ssl : : ssl ; +lib crypto : : crypto shared ; +lib ssl : : ssl shared ; # time functions used on linux require librt -lib librt : : rt ; +lib librt : : rt shared ; -lib libsocket : : libnsl socket shared /usr/sfw/lib ; -lib libnsl : : nsl shared /usr/sfw/lib ; +lib libsocket : : libnsl socket shared /usr/sfw/lib shared ; +lib libnsl : : nsl shared /usr/sfw/lib shared ; -lib tcmalloc : : tcmalloc ; +lib tcmalloc : : tcmalloc shared ; # libz -lib zlib-target : : z ; +lib zlib-target : : z shared ; # GeoIP shared library -lib GeoIP : : GeoIP ; +lib GeoIP : : GeoIP shared ; # socket libraries on windows -lib wsock32 : : wsock32 ; -lib ws2_32 : : ws2_32 ; +lib wsock32 : : wsock32 shared ; +lib ws2_32 : : ws2_32 shared ; SOURCES = alert