0
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2025-06-30 22:18:19 -04:00

Feature: Added --disable-ipv6 as required for 32 bit windows

This commit is contained in:
Philipp Schafft 2025-06-29 23:51:16 +00:00
parent 368c58bedc
commit 0e9dcecafe
2 changed files with 16 additions and 1 deletions

View File

@ -346,6 +346,20 @@ AS_IF([test "x$enable_devel_logging" == "xyes"], [
AC_DEFINE([DEVEL_LOGGING], 1, [Define to enable development logging])
], [enable_devel_logging="no"])
AC_ARG_ENABLE([ipv6],
AS_HELP_STRING([--enable-ipv6],
[enable ipv6 support])
)
AS_IF([test "x$enable_ipv6" != "xno"], [
[enable_ipv6="yes"]
AC_DEFINE([SUPPORT_IPV6], 1, [Define to enable IPv6 support])
], [
[enable_ipv6="no"]
AC_DEFINE([DISABLE_IPV6], 1, [Define to disable IPv6 support])
])
dnl Make substitutions
AC_SUBST(XIPH_LIBS)
AC_SUBST(XIPH_CPPFLAGS)
@ -389,5 +403,6 @@ Format/Codec support:
Features:
YP support : ${enable_yp}
Client tests : ${enable_client_tests}
IPv6 : ${enable_ipv6}
Development logging: ${enable_devel_logging}"])

@ -1 +1 @@
Subproject commit cea99fd9889d48675042f86907d6b25ff29fd945
Subproject commit edfe2311c7b40ae75e2ea091320fb881b7f55433