]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
2698. [cleanup] configure --enable-libbind is deprecated. [RT #20090]
authorEvan Hunt <each@isc.org>
Sat, 3 Oct 2009 16:22:08 +0000 (16:22 +0000)
committerEvan Hunt <each@isc.org>
Sat, 3 Oct 2009 16:22:08 +0000 (16:22 +0000)
CHANGES
configure.in

diff --git a/CHANGES b/CHANGES
index 20ec3d64de0d3804a59fffcec00c3071b7b33cb1..474d94b6e618d1bed6fc2bd4a7c3848faa3c190b 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+2698.   [cleanup]       configure --enable-libbind is deprecated. [RT #20090]
+
 2697.  [port]          win32: ensure that S_IFMT, S_IFDIR, S_IFCHR and
                        S_IFREG are defined after including <isc/stat.h>.
                        [RT #20309]
index e68399cb2a29f90135ff28f600b6b016c415b71f..b9e0fa60459a48a5622a60d087897f96ef2d9296 100644 (file)
@@ -18,11 +18,34 @@ AC_DIVERT_PUSH(1)dnl
 esyscmd([sed "s/^/# /" COPYRIGHT])dnl
 AC_DIVERT_POP()dnl
 
-AC_REVISION($Revision: 1.432.60.33 $)
+AC_REVISION($Revision: 1.432.60.34 $)
 
 AC_INIT(lib/dns/name.c)
 AC_PREREQ(2.59)
 
+#
+# build libbind?
+#
+AC_ARG_ENABLE(libbind,
+       [  --enable-libbind        build libbind (deprecated) [[default=no]]])
+
+
+case "$enable_libbind" in
+       yes)
+               AC_MSG_WARN([The version of libbind included with BIND 9.5
+is no longer maintained.  While '--enable-libbind' will still compile
+and may work, we are no longer supporting it within the BIND
+framework.  Anyone planning to use libbind should download
+and use the separate libbind package.  Please see
+https://www.isc.org/software/libbind for details.
+])
+               LIBBIND=lib/bind
+               AC_SUBST(LIBBIND)
+               ;;
+       no|'')
+               ;;
+esac
+
 AC_CONFIG_HEADER(config.h)
 AC_CONFIG_SUBDIRS(lib/bind)
 
@@ -1257,22 +1280,6 @@ AC_SUBST(LIBTOOL_MODE_LINK)
 AC_SUBST(LIBTOOL_ALLOW_UNDEFINED)
 AC_SUBST(LIBTOOL_IN_MAIN)
 
-#
-# build libbind?
-#
-AC_ARG_ENABLE(libbind,
-       [  --enable-libbind             build libbind [default=no]])
-
-case "$enable_libbind" in
-       yes)
-               LIBBIND=lib/bind
-               AC_SUBST(LIBBIND)
-               ;;
-       no|'')
-               ;;
-esac
-
-
 #
 # Here begins a very long section to determine the system's networking
 # capabilities.  The order of the tests is significant.