summaryrefslogtreecommitdiffstats
path: root/modules/upnp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-05-06 23:30:09 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-05-06 23:30:09 +0200
commitf695de7c68e373088175f8f3b1650f11a27be7aa (patch)
treeb7acd8741b43a72617f86c425dae8c4d2716e706 /modules/upnp
parent7cdad333114e6765351ed0facb48db228ef29b7b (diff)
downloadredot-engine-f695de7c68e373088175f8f3b1650f11a27be7aa.tar.gz
miniupnpc: Disable socket timeout on Windows, matching upstream
Fixes #88471.
Diffstat (limited to 'modules/upnp')
-rw-r--r--modules/upnp/SCsub3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/upnp/SCsub b/modules/upnp/SCsub
index 4b385b820d..98c03e9ee9 100644
--- a/modules/upnp/SCsub
+++ b/modules/upnp/SCsub
@@ -30,7 +30,8 @@ if env["builtin_miniupnpc"]:
env_upnp.Prepend(CPPPATH=[thirdparty_dir + "include"])
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.disable_warnings()