linking against libcrypto on linux, also requires linking against libdl

This commit is contained in:
arvidn 2020-03-21 17:03:54 +01:00 committed by Arvid Norberg
parent f27738a7b9
commit eb528f9ff7
1 changed files with 4 additions and 0 deletions

View File

@ -80,6 +80,10 @@ rule linking ( properties * )
else if <crypto>libcrypto in $(properties)
{
result += <library>crypto ;
if <target-os>linux in $(properties)
{
result += <library>dl ;
}
}
if <target-os>windows in $(properties)