Allow tinc to be built with miniupnpc on Windows.
Contrary to what I expected, it so happens that modern versions of MinGW include an implementation of pthread natively by default, so there is no need to introduce Win32-specific threading code. This means the only changes required to make UPnP work on Windows are just build parameter tuning. This commit forces MinGW to be built statically. This makes linking against miniupnpc simpler (otherwise we would have to handle the mess of dllimport & co.) and it also prevents libwinpthread from being linked dynamically (which it is by default), as this would require additional DLLs to be distributed. Since static linking is how tinc is traditionally built on Windows, I don't expect this to be a big deal.
This commit is contained in:
parent
513bffe1fe
commit
675e3b497b
1 changed files with 3 additions and 1 deletions
|
@ -67,7 +67,9 @@ case $host_os in
|
|||
*mingw*)
|
||||
mingw=true
|
||||
AC_DEFINE(HAVE_MINGW, 1, [MinGW])
|
||||
LIBS="$LIBS -lws2_32 -lgdi32 -lcrypt32"
|
||||
LIBS="$LIBS -lws2_32 -lgdi32 -lcrypt32 -liphlpapi"
|
||||
LDFLAGS="$LDFLAGS -static"
|
||||
CPPFLAGS="$CPPFLAGS -DMINIUPNP_STATICLIB"
|
||||
;;
|
||||
*)
|
||||
AC_MSG_ERROR("Unknown operating system.")
|
||||
|
|
Loading…
Reference in a new issue