]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
966. [port] #include <asm/unistd.h> is required on some Linux
authorMark Andrews <marka@isc.org>
Wed, 29 Aug 2001 04:21:51 +0000 (04:21 +0000)
committerMark Andrews <marka@isc.org>
Wed, 29 Aug 2001 04:21:51 +0000 (04:21 +0000)
                        ports.  [RT #1670]

CHANGES
bin/named/unix/os.c

diff --git a/CHANGES b/CHANGES
index 719538e0d8438832e3318fa21dc0e1ac9a3cf915..f01762abb44175bf827ebcfe8dd49e41c639ea43 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+ 966.  [port]          #include <asm/unistd.h> is required on some Linux
+                       ports.  [RT #1670]
 
  965.  [bug]           Including data other than root server NS and A
                        records in the root hint file could cause a rbtdb
index 991f84b2bbc31dc4d5e15603c672474e0278a256..00aa8135f017e6866b5e4e4287a31f3874b5f851 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: os.c,v 1.44 2001/05/25 07:42:15 marka Exp $ */
+/* $Id: os.c,v 1.45 2001/08/29 04:21:51 marka Exp $ */
 
 #include <config.h>
 #include <stdarg.h>
@@ -107,6 +107,7 @@ static isc_boolean_t non_root_caps = ISC_FALSE;
  */
 #define _LINUX_FS_H
 
+#include <asm/unistd.h>
 #include <sys/syscall.h>       /* Required for syscall(). */
 #include <linux/capability.h>  /* Required for _LINUX_CAPABILITY_VERSION. */