Skip to content
Snippets Groups Projects
Commit b2b34463 authored by Felix Paul Kühne's avatar Felix Paul Kühne Committed by Hugo Beauzée-Luyssen
Browse files

contrib/upnp: disable IPv6 support on iOS/tvOS

Browsing IPv6 servers is unsupported by libupnp on iOS and tvOS leading
to an empty content directory. This is mitigated by disabling IPv6
support just like for WinRT.

Fixes #26301
parent 8ddd2bdd
No related branches found
No related tags found
1 merge request!1630contrib/upnp: disable IPv6 support on iOS/tvOS
Pipeline #203923 passed with stage
in 17 minutes and 26 seconds
......@@ -22,8 +22,12 @@ endif
ifdef HAVE_WINSTORE
CONFIGURE_ARGS=--disable-ipv6 --enable-unspecified_server
else
ifdef HAVE_IOS
CONFIGURE_ARGS=--disable-ipv6 --enable-unspecified_server
else
CONFIGURE_ARGS=--enable-ipv6
endif
endif
ifndef WITH_OPTIMIZATION
CONFIGURE_ARGS += --enable-debug
endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment