Merge pull request #91636 from akien-mga/miniupnpc-disable-SET_SOCKET_TIMEOUT

miniupnpc: Disable socket timeout on Windows, matching upstream
This commit is contained in:
Rémi Verschelde 2024-05-07 09:04:51 +02:00
commit 2576addc28
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -30,7 +30,8 @@ if env["builtin_miniupnpc"]:
env_upnp.Prepend(CPPPATH=[thirdparty_dir + "include"]) env_upnp.Prepend(CPPPATH=[thirdparty_dir + "include"])
env_upnp.Append(CPPDEFINES=["MINIUPNP_STATICLIB"]) env_upnp.Append(CPPDEFINES=["MINIUPNP_STATICLIB"])
env_upnp.Append(CPPDEFINES=["MINIUPNPC_SET_SOCKET_TIMEOUT"]) if env["platform"] != "windows":
env_upnp.Append(CPPDEFINES=["MINIUPNPC_SET_SOCKET_TIMEOUT"])
env_thirdparty = env_upnp.Clone() env_thirdparty = env_upnp.Clone()
env_thirdparty.disable_warnings() env_thirdparty.disable_warnings()