]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
939. [port] Add the --disable-linux-caps option to configure for
authorBrian Wellington <source@isc.org>
Tue, 17 Jul 2001 22:26:43 +0000 (22:26 +0000)
committerBrian Wellington <source@isc.org>
Tue, 17 Jul 2001 22:26:43 +0000 (22:26 +0000)
systems that manage capabilities outside of named.
[RT #1503]

CHANGES
configure.in

diff --git a/CHANGES b/CHANGES
index 2f42689d5105394a140d91f12d2836ccf15bad1e..0dbbab96fa3d1b3035de536f352c58e9c9a53855 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,10 @@
 
        --- 9.2.0b1 released ---
 
+ 939.  [port]          Add the --disable-linux-caps option to configure for
+                       systems that manage capabilities outside of named.
+                       [RT #1503]
+
  938.  [placeholder]
 
  937.  [bug]           A race when shutting down a zone could trigger a
index 4c85b351d3231aa4c71f17230e7451a4905bbd6a..efe56447e5ab6323cbd3a0c6eff758085b3891a0 100644 (file)
@@ -18,7 +18,7 @@ AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl
 esyscmd([sed "s/^/# /" COPYRIGHT])dnl
 AC_DIVERT_POP()dnl
 
-AC_REVISION($Revision: 1.280 $)
+AC_REVISION($Revision: 1.281 $)
 
 AC_INIT(lib/dns/name.c)
 AC_PREREQ(2.13)
@@ -1347,7 +1347,15 @@ AC_SUBST(ISC_PLATFORM_QUADFORMAT)
 # Security Stuff
 #
 AC_CHECK_FUNC(chroot, AC_DEFINE(HAVE_CHROOT))
-AC_CHECK_HEADERS(linux/capability.h)
+AC_ARG_ENABLE(linux-caps,
+       [  --disable-linux-caps disable linux capabilities])
+case "$enable_linux_caps" in
+       yes|'')
+               AC_CHECK_HEADERS(linux/capability.h)
+               ;;
+       no)
+               ;;
+esac
 AC_CHECK_HEADERS(sys/prctl.h)
 
 #