See RT ticket #17071 for more.
- 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
# 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,