From: Shane Kerr Date: Tue, 21 Aug 2007 16:21:15 +0000 (+0000) Subject: Enable DHCPv6 by default. X-Git-Tag: v4_0_0a3~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d00d373a48046f5472fdb1099093c293a8d06f4b;p=thirdparty%2Fdhcp.git Enable DHCPv6 by default. See RT ticket #17071 for more. --- diff --git a/RELNOTES b/RELNOTES index 3e88863e7..a6c4e9588 100644 --- a/RELNOTES +++ b/RELNOTES @@ -64,6 +64,9 @@ suggested fixes to . - Code cleaned to remove warnings reported by "gcc -Wall". +- DHCPv6 is now the default. You can disable DHCPv6 support using the + "--disable-dhcpv6" flag when you run the configure script. + Changes since 4.0.0a1 - Bug in octal parsing fixed. Thanks to Bernd Fuhrmann for the report diff --git a/configure.ac b/configure.ac index f621e8945..0b0fd91f2 100644 --- a/configure.ac +++ b/configure.ac @@ -18,9 +18,11 @@ AC_DEFINE_UNQUOTED([DHCP_BYTE_ORDER], [$byte_order], # DHCPv6 is off by default AC_ARG_ENABLE(dhcpv6, AC_HELP_STRING([--enable-dhcpv6], - [enable support for DHCPv6 (default is NO)]), + [enable support for DHCPv6 (default is yes)])) +if test "$enable_dhcpv6" != "no"; then AC_DEFINE([DHCPv6], [1], - [Define to 1 to include DHCPv6 support.])) + [Define to 1 to include DHCPv6 support.]) +fi # Allow specification of alternate state files AC_ARG_WITH(srv-lease-file,