X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=configure.ac;h=1717a3af2241045e332a72516667fe36e396ca13;hb=cea350af849c52de4964fdfa8c4a472208bacae1;hp=82957a7776f5d6d2688581dd3d348a42a9612216;hpb=e0764efac7e88922073ffd4b148cc1f0646e7bcb;p=tlsproxy%2Ftlsproxy.git diff --git a/configure.ac b/configure.ac index 82957a7..1717a3a 100644 --- a/configure.ac +++ b/configure.ac @@ -9,7 +9,8 @@ AM_INIT_AUTOMAKE([foreign -Wall -Werror]) AC_PROG_CC if test "x$GCC" = xyes; then - CFLAGS="-std=c89 -pedantic -Wall -Wextra -Werror -D_XOPEN_SOURCE=500 $CFLAGS" + CFLAGS="-std=c89 -pedantic -Wall -Wextra -Werror $CFLAGS" + CFLAGS="-D_XOPEN_SOURCE=500 -Wno-error=int-to-pointer-cast $CFLAGS" fi AC_CHECK_LIB([pthread], [pthread_create], @@ -23,6 +24,13 @@ AC_ARG_ENABLE([debug], AC_DEFINE([DEBUG], 1, [Define to enable debug output.]) fi]) +AC_ARG_ENABLE([ipv6], + [AC_HELP_STRING([--disable-ipv6], + [disable IPv6, for IPv4 only network stacks])], + [if test "x$enableval" = xno; then + AC_DEFINE([USE_IPV4_ONLY], 1, [Define to not use IPv6.]) + fi]) + AC_CONFIG_HEADERS([config.h]) -AC_CONFIG_FILES([Makefile src/Makefile]) +AC_CONFIG_FILES([Makefile src/Makefile tests/Makefile]) AC_OUTPUT