]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
[master] Pre-release tag prep for 4.4.2: version #, copyright etc...
authorThomas Markwalder <tmark@isc.org>
Fri, 17 Jan 2020 20:38:12 +0000 (15:38 -0500)
committerThomas Markwalder <tmark@isc.org>
Fri, 17 Jan 2020 20:38:12 +0000 (15:38 -0500)
 Changes to be committed:
modified:   LICENSE
modified:   README
modified:   RELNOTES
modified:   client/dhclient.c
modified:   common/discover.c
modified:   configure
modified:   configure.ac
modified:   configure.ac+lt
modified:   configure.ac-base
modified:   configure.ac-lt
modified:   relay/dhcrelay.c
modified:   relay/tests/relay_unittests.c
modified:   server/dhcpd.c
modified:   server/failover.c
modified:   util/bind.sh

15 files changed:
LICENSE
README
RELNOTES
client/dhclient.c
common/discover.c
configure
configure.ac
configure.ac+lt
configure.ac-base
configure.ac-lt
relay/dhcrelay.c
relay/tests/relay_unittests.c
server/dhcpd.c
server/failover.c
util/bind.sh

diff --git a/LICENSE b/LICENSE
index fa217c39a50413ab053d0185d0fcbe186d97045d..b7c85280b60a12eae1cb150bab45c277afa23d0b 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-# Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
+# Copyright (c) 2004-2020 by Internet Systems Consortium, Inc. ("ISC")
 # Copyright (c) 1995-2003 by Internet Software Consortium
 #
 # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
diff --git a/README b/README
index fa680173a9a80865d061ce59ecae10976e9e51d9..63cafb1cefa6397e6ecb0d118a2eabb8b252149f 100644 (file)
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
              Internet Systems Consortium DHCP Distribution
-                            Version 4.4.2b1
-                           12 December 2019
+                            Version 4.4.2
+                           22 January 2020
 
                              README FILE
 
@@ -97,12 +97,12 @@ directory, it may not have up-to-date information).
 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.2b1.tar.gz
-       tar xvf dhcp-4.4.2b1.tar
+       gunzip dhcp-4.4.2.tar.gz
+       tar xvf dhcp-4.4.2.tar
 
                            CONFIGURING IT
 
-Now, cd to the dhcp-4.4.2b1 subdirectory that you've just created and
+Now, cd to the dhcp-4.4.2 subdirectory that you've just created and
 configure the source tree by typing:
 
        ./configure
index 30c8a48bf19d0e2581fcaba02a4ca08077d785ab..9d0a04144253e399d572e043ff2f4da4613d9b82 100644 (file)
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,7 +1,6 @@
                 Internet Systems Consortium DHCP Distribution
-                            Version 4.4.2b1
-                           18 December 2019
-
+                            Version 4.4.2
+                            22 January 2020
                              Release Notes
 
                               NEW FEATURES
@@ -10,7 +9,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.
 
-While release 4.4.2b1 is primarily a maintenance release that addresses a number
+While release 4.4.2 is primarily a maintenance release that addresses a number
 of defects, it does introduce a few new features:
 
 - Keama - Keama is a migration utility that assists in converting ISC DHCP
index c69ab7e8d766a24754feab04a2e6b6d48096ea2c..189e527094e8adaaa71c4bb859e484018168b100 100644 (file)
@@ -3,7 +3,7 @@
    DHCP Client. */
 
 /*
- * Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2020 by Internet Systems Consortium, Inc. ("ISC")
  * Copyright (c) 1995-2003 by Internet Software Consortium
  *
  * This Source Code Form is subject to the terms of the Mozilla Public
@@ -77,7 +77,7 @@ int decline_wait_time = 10; /* Default to 10 secs per, RFC 2131, 3.1.5 */
 #define ASSERT_STATE(state_is, state_shouldbe) {}
 
 #ifndef UNIT_TEST
-static const char copyright[] = "Copyright 2004-2019 Internet Systems Consortium.";
+static const char copyright[] = "Copyright 2004-2020 Internet Systems Consortium.";
 static const char arr [] = "All rights reserved.";
 static const char message [] = "Internet Systems Consortium DHCP Client";
 static const char url [] = "For info, please visit https://www.isc.org/software/dhcp/";
index 6c721f26d465391318e91f3d33ba5b6702fc7130..ca4f4d55ec9f06c8217222787add5e413b206627 100644 (file)
@@ -3,7 +3,7 @@
    Find and identify the network interfaces. */
 
 /*
- * Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2020 by Internet Systems Consortium, Inc. ("ISC")
  * Copyright (c) 1995-2003 by Internet Software Consortium
  *
  * This Source Code Form is subject to the terms of the Mozilla Public
 # include <net/if6.h>
 #endif
 
-struct interface_info *interfaces, *dummy_interfaces, *fallback_interface;
+struct interface_info *interfaces = 0;
+struct interface_info *dummy_interfaces = 0;
+struct interface_info *fallback_interface = 0;
+
 int interfaces_invalidated;
 int quiet_interface_discovery;
 u_int16_t local_port;
index 34f8330d2b979a281054c7ecb266b08300ad40e0..bc005c4b35f11c8f2c6f8877392454dc87fdaaa9 100755 (executable)
--- 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.2b1.
+# Generated by GNU Autoconf 2.69 for DHCP 4.4.2.
 #
 # Report bugs to <dhcp-users@isc.org>.
 #
@@ -580,8 +580,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='DHCP'
 PACKAGE_TARNAME='dhcp'
-PACKAGE_VERSION='4.4.2b1'
-PACKAGE_STRING='DHCP 4.4.2b1'
+PACKAGE_VERSION='4.4.2'
+PACKAGE_STRING='DHCP 4.4.2'
 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.2b1 to adapt to many kinds of systems.
+\`configure' configures DHCP 4.4.2 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.2b1:";;
+     short | recursive ) echo "Configuration of DHCP 4.4.2:";;
    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.2b1
+DHCP configure 4.4.2
 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.2b1, which was
+It was created by DHCP $as_me 4.4.2, 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.2b1'
+ VERSION='4.4.2'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -8093,7 +8093,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.2b1, which was
+This file was extended by DHCP $as_me 4.4.2, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -8159,7 +8159,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.2b1
+DHCP config.status 4.4.2
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
index 56381ea0e252c31360856f98457a680b2e2b3db6..3a583a59c7c7933d87bb41b4e568c999efbdaf8d 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT([DHCP],[4.4.2b1],[dhcp-users@isc.org])
+AC_INIT([DHCP],[4.4.2],[dhcp-users@isc.org])
 
 
 # we specify "foreign" to avoid having to have the GNU mandated files,
index 3709b7ba90408b4218af02e26629d01efa5ca5e5..6432927f8e6577757eb8f7cbaa9d67c1838c1276 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT([DHCP],[4.4.2b1],[dhcp-users@isc.org])
+AC_INIT([DHCP],[4.4.2],[dhcp-users@isc.org])
 
 # for libtool
 AC_CONFIG_MACRO_DIR([m4])
index 1ba620fcf6ae81ec7d8524d04e73b51969abb531..a981afe09a2a868afeb56a43f0d4d663fd6be1ab 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT([DHCP],[4.4.2b1],[dhcp-users@isc.org])
+AC_INIT([DHCP],[4.4.2],[dhcp-users@isc.org])
 
 @BEGIN WITH LIBTOOL
 # for libtool
index 56381ea0e252c31360856f98457a680b2e2b3db6..3a583a59c7c7933d87bb41b4e568c999efbdaf8d 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT([DHCP],[4.4.2b1],[dhcp-users@isc.org])
+AC_INIT([DHCP],[4.4.2],[dhcp-users@isc.org])
 
 
 # we specify "foreign" to avoid having to have the GNU mandated files,
index 980dacaeb1745ea83945259b6d04c1ed30bd10f8..d4ce5f27c9b6df76278880818edcb62ff198dedb 100644 (file)
@@ -3,7 +3,7 @@
    DHCP/BOOTP Relay Agent. */
 
 /*
- * Copyright(c) 2004-2019 by Internet Systems Consortium, Inc.("ISC")
+ * Copyright(c) 2004-2020 by Internet Systems Consortium, Inc.("ISC")
  * Copyright(c) 1997-2003 by Internet Software Consortium
  *
  * This Source Code Form is subject to the terms of the Mozilla Public
@@ -149,7 +149,7 @@ extern int strip_relay_agent_options(struct interface_info *,
 static void request_v4_interface(const char* name, int flags);
 
 static const char copyright[] =
-"Copyright 2004-2019 Internet Systems Consortium.";
+"Copyright 2004-2020 Internet Systems Consortium.";
 static const char arr[] = "All rights reserved.";
 static const char message[] =
 "Internet Systems Consortium DHCP Relay Agent";
index 2297050aeb4f653e8905d723391cd08b76a92ed1..cba14bd587d5e43ae6268efe5ae635dcf6ef1784 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2019 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2019-2020 by Internet Systems Consortium, Inc. ("ISC")
  *
  * This Source Code Form is subject to the terms of the Mozilla Public
  * License, v. 2.0. If a copy of the MPL was not distributed with this
index f27a795e57f440c716a69a51c22221eed5eef40d..6c2ceedd7b7f7238352f272a7a3d0cdee0c757d4 100644 (file)
@@ -3,7 +3,7 @@
    DHCP Server Daemon. */
 
 /*
- * Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2020 by Internet Systems Consortium, Inc. ("ISC")
  * Copyright (c) 1996-2003 by Internet Software Consortium
  *
  * This Source Code Form is subject to the terms of the Mozilla Public
@@ -27,7 +27,7 @@
  */
 
 static const char copyright[] =
-"Copyright 2004-2019 Internet Systems Consortium.";
+"Copyright 2004-2020 Internet Systems Consortium.";
 static const char arr [] = "All rights reserved.";
 static const char message [] = "Internet Systems Consortium DHCP Server";
 static const char url [] =
index e3821eb092f679da97e30c99224b53d059d8531c..0e3381a2db5c8bc1aa81f4145774cae08102a716 100644 (file)
@@ -3,7 +3,7 @@
    Failover protocol support code... */
 
 /*
- * Copyright (c) 2004-2017 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2020 by Internet Systems Consortium, Inc. ("ISC")
  * Copyright (c) 1999-2003 by Internet Software Consortium
  *
  * This Source Code Form is subject to the terms of the Mozilla Public
index 10feff93905399a78821bd30330ecf8660fad665..ce350cd84eb9a59ca82621dd3c4e9e386521c4aa 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2009-2019  Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2009-2020  Internet Systems Consortium, Inc. ("ISC")
 #
 # This Source Code Form is subject to the terms of the Mozilla Public
 # License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -73,6 +73,7 @@ case $# in
        ### For ease of use, this records the sticky tag of versions
        ### released with each point release.
        ###
+       4.4.2) noSNAP=snapshot BINDTAG=v9_11_14 ;;
        4.4.2b1) noSNAP=snapshot BINDTAG=v9_11_14 ;;
        4.4.2-dev) noSNAP=snapshot BINDTAG=v9_11_8 ;;
        4.4.1) noSNAP=snapshot BINDTAG=v9_11_2_P1 ;;