X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=configure.ac;h=6cfb3f7a062687dc242eb3d592f4fb64d85aad3d;hb=64bfebde76d568808b6fa8a8d09b4b5afe13dc15;hp=9ca7e3950256102807c43a98b206cadc17c0872a;hpb=14106ea40a55acbba0d14a6f66350221ade044ab;p=tlsproxy%2Ftlsproxy.git diff --git a/configure.ac b/configure.ac index 9ca7e39..6cfb3f7 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([tlsproxy], [0.1], [simon@ruderich.org]) +AC_INIT([tlsproxy], [0.2], [simon@ruderich.org]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) @@ -24,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