[vlc-commits] [Git][videolan/vlc][master] contrib/upnp: disable IPv6 support on iOS/tvOS
Hugo Beauzée-Luyssen (@chouquette)
gitlab at videolan.org
Fri Mar 25 13:31:27 UTC 2022
Hugo Beauzée-Luyssen pushed to branch master at VideoLAN / VLC
Commits:
b2b34463 by Felix Paul Kühne at 2022-03-25T12:34:07+00:00
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
- - - - -
1 changed file:
- contrib/src/upnp/rules.mak
Changes:
=====================================
contrib/src/upnp/rules.mak
=====================================
@@ -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
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/b2b344632e05576d9a86259412ace050cc8008b1
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/b2b344632e05576d9a86259412ace050cc8008b1
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list