fixes build issue with openssl on mingw

This commit is contained in:
Arvid Norberg 2007-12-15 23:38:54 +00:00
parent 7a393426b1
commit eec07349e9
1 changed files with 6 additions and 1 deletions

View File

@ -28,6 +28,12 @@ rule linking ( properties * )
{
# exclude gcc from a regular windows build to make mingw
# link against the regular unix library name
if <target-os>windows in $(properties)
{
result += <library>gdi32 ;
}
if <target-os>windows in $(properties) && ! <toolset>gcc in $(properties)
{
result += <library>ssleay32
@ -35,7 +41,6 @@ rule linking ( properties * )
<library>advapi32
<library>user32
<library>shell32
<library>gdi32
;
}
else