fixed linux build when linking against openssl (adds libdl.so)

This commit is contained in:
Arvid Norberg 2008-09-03 00:55:49 +00:00
parent f9f7b689a3
commit c152a88512
1 changed files with 7 additions and 0 deletions

View File

@ -172,6 +172,13 @@ rule building ( properties * )
{
result += <source>src/pe_crypto.cpp ;
}
if <target-os>linux in $(properties)
{
# linker library on linux, required when using openssl
result += <source>/usr/lib/libdl.so ;
}
}
if <memdebug>on in $(properties)