From c152a88512e13d899350a2c95709fb782e9023fb Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Wed, 3 Sep 2008 00:55:49 +0000 Subject: [PATCH] fixed linux build when linking against openssl (adds libdl.so) --- Jamfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Jamfile b/Jamfile index 778b7eab8..bd1b6248b 100755 --- a/Jamfile +++ b/Jamfile @@ -172,6 +172,13 @@ rule building ( properties * ) { result += src/pe_crypto.cpp ; } + + if linux in $(properties) + { + # linker library on linux, required when using openssl + result += /usr/lib/libdl.so ; + } + } if on in $(properties)