summaryrefslogtreecommitdiff
path: root/usr.sbin/bind/config.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/bind/config.h.in')
-rw-r--r--usr.sbin/bind/config.h.in16
1 files changed, 15 insertions, 1 deletions
diff --git a/usr.sbin/bind/config.h.in b/usr.sbin/bind/config.h.in
index 3dc3004cbc7..13061c684fd 100644
--- a/usr.sbin/bind/config.h.in
+++ b/usr.sbin/bind/config.h.in
@@ -16,7 +16,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $ISC: config.h.in,v 1.47.2.3.2.13 2004/12/04 06:53:50 marka Exp $ */
+/* $ISC: config.h.in,v 1.47.2.3.2.20 2005/10/20 23:57:38 marka Exp $ */
/***
*** This file is not to be included by any public header files, because
@@ -224,6 +224,9 @@ int sigwait(const unsigned int *set, int *sig);
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
+/* Defined if extern char *optarg is not declared. */
+#undef NEED_OPTARG
+
/* Define to the address where bug reports for this package should be sent. */
#undef PACKAGE_BUGREPORT
@@ -239,12 +242,20 @@ int sigwait(const unsigned int *set, int *sig);
/* Define to the version of this package. */
#undef PACKAGE_VERSION
+/* Sets which flag to pass to open/fcntl to make non-blocking
+ (O_NDELAY/O_NONBLOCK). */
+#undef PORT_NONBLOCK
+
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
#undef TIME_WITH_SYS_TIME
+/* Defined if you need to use ioctl(FIONBIO) instead a fcntl call to make
+ non-blocking. */
+#undef USE_FIONBIO_IOCTL
+
/* Define to 1 if your processor stores words with the most significant byte
first (like Motorola and SPARC, unlike Intel and VAX). */
#undef WORDS_BIGENDIAN
@@ -263,3 +274,6 @@ int sigwait(const unsigned int *set, int *sig);
/* Define to `int' if <sys/types.h> does not define. */
#undef ssize_t
+
+/* Define to `unsigned long' if <sys/types.h> does not define. */
+#undef uintptr_t