forked from premiere/premiere-libtorrent
fixes build issue with openssl on mingw
This commit is contained in:
parent
7a393426b1
commit
eec07349e9
7
Jamfile
7
Jamfile
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue