[Dovecot] --disable-ipv6 does not work
Hi, configure option "--disable-ipv6" does not work for me in version 1.1.beta16 (and earlier versions). The following patch fixed this problem for me. Heiko ============================================================ --- configure.in.org 2008-02-16 15:35:53.000000000 +0100 +++ configure.in 2008-02-17 01:30:21.675931789 +0100 @@ -23,8 +23,8 @@ AC_ARG_ENABLE(ipv6, [ --enable-ipv6 Enable IPv6 support (auto)], - if test x$withval = xno || test x$withval = xauto; then - want_ipv6=$withval + if test x$enableval = xno || test x$enableval = xauto; then + want_ipv6=$enableval else want_ipv6=yes fi, ============================================================ Heiko Schlichting | Freie Universität Berlin heiko@FU-Berlin.DE | Zentraleinrichtung für Datenverarbeitung (ZEDAT) Telefon +49 30 838-54327 | Fabeckstraße 32 Telefax +49 30 838454327 | 14195 Berlin
On Sun, 2008-02-17 at 02:27 +0100, Heiko Schlichting wrote:
configure option "--disable-ipv6" does not work for me in version 1.1.beta16 (and earlier versions). The following patch fixed this problem for me.
Thanks, fixed. I also added code to make sure configure fails if --enable-ipv6 is explicitly used.
But why do you want to disable IPv6 support? I had been thinking about removing the option completely.
Timo,
Thanks, fixed. I also added code to make sure configure fails if --enable-ipv6 is explicitly used.
Thanks.
But why do you want to disable IPv6 support? I had been thinking about removing the option completely.
I just want to prevent that someone activates IPv6 by mistake on one of our production servers as long as our firewalls and monitoring for IPv6 are not on the same level as they are for IPv4.
Heiko
Heiko Schlichting | Freie Universität Berlin heiko@FU-Berlin.DE | Zentraleinrichtung für Datenverarbeitung (ZEDAT) Telefon +49 30 838-54327 | Fabeckstraße 32 Telefax +49 30 838454327 | 14195 Berlin
participants (2)
-
Heiko Schlichting
-
Timo Sirainen