diff --git a/.gitignore b/.gitignore index 6fec730ceff71d3af4d879ce431892083e590803..42751758502cd821d9c0bb61a142924366c80532 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ common/tests/alloc_unittest common/tests/dns_unittest common/tests/misc_unittest common/tests/ns_name_unittest +common/tests/option_unittest config.log config.report config.status diff --git a/README b/README index 01d6490019ef0f46df411a22d7bec474a6768a2c..05a143fa3e8d72ca8886dc68ca37d5997cafa080 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ Internet Systems Consortium DHCP Distribution - Version 4.4.0 - 31 January 2018 + Version 4.4.1 + 28 February 2018 README FILE @@ -142,12 +142,12 @@ information. On Digital Unix, type ``man pfilt''. To build the DHCP Distribution, unpack the compressed tar file using the tar utility and the gzip command - type something like: - gunzip dhcp-4.4.0.tar.gz - tar xvf dhcp-4.4.0.tar + gunzip dhcp-4.4.1.tar.gz + tar xvf dhcp-4.4.1.tar CONFIGURING IT -Now, cd to the dhcp-4.4.0 subdirectory that you've just created and +Now, cd to the dhcp-4.4.1 subdirectory that you've just created and configure the source tree by typing: ./configure diff --git a/RELNOTES b/RELNOTES index 1e2036775b74383e51c7afd8ba8b4be3cd9c3d06..8a2a6f16eba058b8dba8bb81efbd74f22b1e77e2 100644 --- a/RELNOTES +++ b/RELNOTES @@ -1,6 +1,6 @@ Internet Systems Consortium DHCP Distribution - Version 4.4.0 - 31 January 2018 + Version 4.4.1 + 28 February 2018 Release Notes @@ -10,7 +10,7 @@ Please note that that ISC DHCP is now licensed under the Mozilla Public License, MPL 2.0. Please see https://www.mozilla.org/en-US/MPL/2.0/ to read the MPL 2.0 license terms. -The areas of focus for ISC DHCP 4.4.0 were: +The areas of focus for ISC DHCP 4.4.x were: 1. Dynamic DNS additions 2. dhclient improvements diff --git a/configure b/configure index d0137c6a0c2948453e0a8760f058bd3f78c49284..ddb4695fbbeeb7aa9ade6e8f24f3776418dc3aa0 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for DHCP 4.4.0. +# Generated by GNU Autoconf 2.69 for DHCP 4.4.1. # # Report bugs to . # @@ -580,8 +580,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='DHCP' PACKAGE_TARNAME='dhcp' -PACKAGE_VERSION='4.4.0' -PACKAGE_STRING='DHCP 4.4.0' +PACKAGE_VERSION='4.4.1' +PACKAGE_STRING='DHCP 4.4.1' PACKAGE_BUGREPORT='dhcp-users@isc.org' PACKAGE_URL='' @@ -1350,7 +1350,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures DHCP 4.4.0 to adapt to many kinds of systems. +\`configure' configures DHCP 4.4.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1420,7 +1420,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of DHCP 4.4.0:";; + short | recursive ) echo "Configuration of DHCP 4.4.1:";; esac cat <<\_ACEOF @@ -1591,7 +1591,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -DHCP configure 4.4.0 +DHCP configure 4.4.1 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2384,7 +2384,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by DHCP $as_me 4.4.0, which was +It was created by DHCP $as_me 4.4.1, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3251,7 +3251,7 @@ fi # Define the identity of the package. PACKAGE='dhcp' - VERSION='4.4.0' + VERSION='4.4.1' cat >>confdefs.h <<_ACEOF @@ -8102,7 +8102,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by DHCP $as_me 4.4.0, which was +This file was extended by DHCP $as_me 4.4.1, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -8168,7 +8168,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -DHCP config.status 4.4.0 +DHCP config.status 4.4.1 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index d6924bf955b658769aef81f24d168420c17f0d60..a797438569f35baba3f68e578a031e8bbcce894a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([DHCP],[4.4.0],[dhcp-users@isc.org]) +AC_INIT([DHCP],[4.4.1],[dhcp-users@isc.org]) # we specify "foreign" to avoid having to have the GNU mandated files, diff --git a/configure.ac+lt b/configure.ac+lt index 2281f1db4ef6dcf36f80f36ed3c30fbfe412153e..bfa672af4bcdd0f1a8c94a1230b17b0da81592a8 100644 --- a/configure.ac+lt +++ b/configure.ac+lt @@ -1,4 +1,4 @@ -AC_INIT([DHCP],[4.4.0],[dhcp-users@isc.org]) +AC_INIT([DHCP],[4.4.1],[dhcp-users@isc.org]) # for libtool AC_CONFIG_MACRO_DIR([m4]) diff --git a/configure.ac-base b/configure.ac-base index 9e277884e2923c4e22b3f653db7ebed1773b05e7..880894ce5d75e6899a2e596a09fd8ea74f9591a8 100644 --- a/configure.ac-base +++ b/configure.ac-base @@ -1,4 +1,4 @@ -AC_INIT([DHCP],[4.4.0],[dhcp-users@isc.org]) +AC_INIT([DHCP],[4.4.1],[dhcp-users@isc.org]) @BEGIN WITH LIBTOOL # for libtool diff --git a/configure.ac-lt b/configure.ac-lt index d6924bf955b658769aef81f24d168420c17f0d60..a797438569f35baba3f68e578a031e8bbcce894a 100644 --- a/configure.ac-lt +++ b/configure.ac-lt @@ -1,4 +1,4 @@ -AC_INIT([DHCP],[4.4.0],[dhcp-users@isc.org]) +AC_INIT([DHCP],[4.4.1],[dhcp-users@isc.org]) # we specify "foreign" to avoid having to have the GNU mandated files, diff --git a/util/bind.sh b/util/bind.sh index 815ffd71ac9f857e4e8713a3baf0faa3d694aefc..4e986ea0a68daf23e64ad07e0d0535232ddd6dc6 100644 --- a/util/bind.sh +++ b/util/bind.sh @@ -58,6 +58,7 @@ case $# in ### For ease of use, this records the sticky tag of versions ### released with each point release. ### + 4.4.1) noSNAP=snapshot BINDTAG=v9_11_2_P1 ;; 4.4.0) noSNAP=snapshot BINDTAG=v9_11_2_P1 ;; 4.4.0b1) noSNAP=snapshot BINDTAG=v9_11_2 ;; 4.4.0a1) noSNAP=snapshot BINDTAG=v9_11_2 ;;