]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Enable DHCPv6 by default.
authorShane Kerr <shane@isc.org>
Tue, 21 Aug 2007 16:21:15 +0000 (16:21 +0000)
committerShane Kerr <shane@isc.org>
Tue, 21 Aug 2007 16:21:15 +0000 (16:21 +0000)
See RT ticket #17071 for more.

RELNOTES
configure.ac

index 3e88863e737068ac3c90a253e7edfad6936b9eed..a6c4e95889848a8dd00a4b4a176b17b2b8395298 100644 (file)
--- a/RELNOTES
+++ b/RELNOTES
@@ -64,6 +64,9 @@ suggested fixes to <dhcp-users@isc.org>.
 
 - 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
index f621e894597670ad36a3e1e93ed41bb44ebe6c80..0b0fd91f2a580893ea04180c75c8dacd770df1df 100644 (file)
@@ -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,