[Midnightbsd-cvs] src: lib/bind: Update files for BIND 9.4.2.
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Fri Apr 18 15:01:40 EDT 2008
Log Message:
-----------
Update files for BIND 9.4.2.
Modified Files:
--------------
src/lib/bind:
config.h (r1.3 -> r1.4)
src/lib/bind/bind:
config.h (r1.2 -> r1.3)
port_after.h (r1.2 -> r1.3)
port_before.h (r1.2 -> r1.3)
src/lib/bind/isc/isc:
platform.h (r1.2 -> r1.3)
src/lib/bind/lwres/lwres:
netdb.h (r1.2 -> r1.3)
platform.h (r1.2 -> r1.3)
-------------- next part --------------
Index: port_before.h
===================================================================
RCS file: /home/cvs/src/lib/bind/bind/port_before.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -L lib/bind/bind/port_before.h -L lib/bind/bind/port_before.h -u -r1.2 -r1.3
--- lib/bind/bind/port_before.h
+++ lib/bind/bind/port_before.h
@@ -12,6 +12,16 @@
#endif
#include <limits.h>
+#ifdef ISC_PLATFORM_NEEDTIMESPEC
+#include <time.h> /* For time_t */
+struct timespec {
+ time_t tv_sec; /* seconds */
+ long tv_nsec; /* nanoseconds */
+};
+#endif
+#ifndef HAVE_MEMMOVE
+#define memmove(a,b,c) bcopy(b,a,c)
+#endif
#undef WANT_IRS_GR
#undef WANT_IRS_NIS
@@ -22,7 +32,7 @@
#undef HAVE_MD5
#undef SOLARIS2
-#undef DO_PTHREADS
+#define DO_PTHREADS 1
#define GETGROUPLIST_ARGS const char *name, gid_t basegid, gid_t *groups, int *ngroups
#define GETNETBYADDR_ADDR_T long
#define SETPWENT_VOID 1
@@ -148,3 +158,5 @@
#endif
#endif
+
+/*! \file */
Index: port_after.h
===================================================================
RCS file: /home/cvs/src/lib/bind/bind/port_after.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -L lib/bind/bind/port_after.h -L lib/bind/bind/port_after.h -u -r1.2 -r1.3
--- lib/bind/bind/port_after.h
+++ lib/bind/bind/port_after.h
@@ -28,7 +28,7 @@
#undef HAS_IN_ADDR6
#define HAVE_SOCKADDR_STORAGE 1
#undef NEED_GETTIMEOFDAY
-#undef HAVE_STRNDUP
+#define HAVE_STRNDUP 1
#undef USE_FIONBIO_IOCTL
#undef USE_SYSERROR_LIST
#undef INNETGR_ARGS
Index: config.h
===================================================================
RCS file: /home/cvs/src/lib/bind/bind/config.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -L lib/bind/bind/config.h -L lib/bind/bind/config.h -u -r1.2 -r1.3
--- lib/bind/bind/config.h
+++ lib/bind/bind/config.h
@@ -12,6 +12,8 @@
/* #undef POSIX_GETPWNAM_R */
/* #undef POSIX_GETGRGID_R */
/* #undef POSIX_GETGRNAM_R */
+#define HAVE_MEMMOVE 1
+#define HAVE_MEMCHR 1
/* #undef NEED_SETGROUPENT */
/* #undef NEED_GETGROUPLIST */
@@ -39,6 +41,7 @@
#define HAS_PW_CLASS 1
+/* #undef ssize_t */
/* #undef uintptr_t */
/* Shut up warnings about sputaux in stdio.h on BSD/OS pre-4.1 */
Index: platform.h
===================================================================
RCS file: /home/cvs/src/lib/bind/isc/isc/platform.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -L lib/bind/isc/isc/platform.h -L lib/bind/isc/isc/platform.h -u -r1.2 -r1.3
--- lib/bind/isc/isc/platform.h
+++ lib/bind/isc/isc/platform.h
@@ -1,8 +1,8 @@
/*
- * Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2003 Internet Software Consortium.
*
- * Permission to use, copy, modify, and distribute this software for any
+ * Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
@@ -15,208 +15,259 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: platform.h.in,v 1.24.2.1.10.11 2004/03/08 09:04:52 marka Exp $ */
+/* $Id: platform.h.in,v 1.34.18.9 2007/09/13 05:04:01 each Exp $ */
#ifndef ISC_PLATFORM_H
#define ISC_PLATFORM_H 1
+/*! \file */
+
/*****
***** Platform-dependent defines.
*****/
+/*
+ * Define if the platform has <strings.h>.
+ */
+#define ISC_PLATFORM_HAVESTRINGSH 1
+
/***
*** Network.
***/
-/*
+/*! \brief
* Define if this system needs the <netinet/in6.h> header file included
* for full IPv6 support (pretty much only UnixWare).
*/
#undef ISC_PLATFORM_NEEDNETINETIN6H
-/*
+/*! \brief
* Define if this system needs the <netinet6/in6.h> header file included
* to support in6_pkinfo (pretty much only BSD/OS).
*/
#undef ISC_PLATFORM_NEEDNETINET6IN6H
-/*
+/*! \brief
* If sockaddrs on this system have an sa_len field, ISC_PLATFORM_HAVESALEN
* will be defined.
*/
#define ISC_PLATFORM_HAVESALEN 1
-/*
+/*! \brief
* If this system has the IPv6 structure definitions, ISC_PLATFORM_HAVEIPV6
* will be defined.
*/
#define ISC_PLATFORM_HAVEIPV6 1
-/*
+/*! \brief
* If this system is missing in6addr_any, ISC_PLATFORM_NEEDIN6ADDRANY will
* be defined.
*/
#undef ISC_PLATFORM_NEEDIN6ADDRANY
-/*
+/*! \brief
* If this system is missing in6addr_loopback, ISC_PLATFORM_NEEDIN6ADDRLOOPBACK
* will be defined.
*/
#undef ISC_PLATFORM_NEEDIN6ADDRLOOPBACK
-/*
+/*! \brief
* If this system has in6_pktinfo, ISC_PLATFORM_HAVEIN6PKTINFO will be
* defined.
*/
#define ISC_PLATFORM_HAVEIN6PKTINFO 1
-/*
+/*! \brief
* If this system has in_addr6, rather than in6_addr, ISC_PLATFORM_HAVEINADDR6
* will be defined.
*/
#undef ISC_PLATFORM_HAVEINADDR6
-/*
+/*! \brief
* If this system has sin6_scope_id, ISC_PLATFORM_HAVESCOPEID will be defined.
*/
#define ISC_PLATFORM_HAVESCOPEID 1
-/*
+/*! \brief
* If this system needs inet_ntop(), ISC_PLATFORM_NEEDNTOP will be defined.
*/
#undef ISC_PLATFORM_NEEDNTOP
-/*
+/*! \brief
* If this system needs inet_pton(), ISC_PLATFORM_NEEDPTON will be defined.
*/
#undef ISC_PLATFORM_NEEDPTON
-/*
+/*! \brief
* If this system needs inet_aton(), ISC_PLATFORM_NEEDATON will be defined.
*/
#undef ISC_PLATFORM_NEEDATON
-/*
+/*! \brief
* If this system needs in_port_t, ISC_PLATFORM_NEEDPORTT will be defined.
*/
#undef ISC_PLATFORM_NEEDPORTT
-/*
+/*! \brief
* If the system needs strsep(), ISC_PLATFORM_NEEDSTRSEP will be defined.
*/
#undef ISC_PLATFORM_NEEDSTRSEP
-/*
+/*! \brief
* If the system needs strlcpy(), ISC_PLATFORM_NEEDSTRLCPY will be defined.
*/
#undef ISC_PLATFORM_NEEDSTRLCPY
-/*
+/*! \brief
* If the system needs strlcat(), ISC_PLATFORM_NEEDSTRLCAT will be defined.
*/
#undef ISC_PLATFORM_NEEDSTRLCAT
-/*
+/*! \brief
* Define either ISC_PLATFORM_BSD44MSGHDR or ISC_PLATFORM_BSD43MSGHDR.
*/
#define ISC_NET_BSD44MSGHDR 1
-/*
+/*! \brief
* Define if PTHREAD_ONCE_INIT should be surrounded by braces to
* prevent compiler warnings (such as with gcc on Solaris 2.8).
*/
#undef ISC_PLATFORM_BRACEPTHREADONCEINIT
-/*
+/*! \brief
* Define on some UnixWare systems to fix erroneous definitions of various
* IN6_IS_ADDR_* macros.
*/
#undef ISC_PLATFORM_FIXIN6ISADDR
-/***
+/*
*** Printing.
***/
-/*
+/*! \brief
* If this system needs vsnprintf() and snprintf(), ISC_PLATFORM_NEEDVSNPRINTF
* will be defined.
*/
#undef ISC_PLATFORM_NEEDVSNPRINTF
-/*
+/*! \brief
* If this system need a modern sprintf() that returns (int) not (char*).
*/
#undef ISC_PLATFORM_NEEDSPRINTF
-/*
+/*! \brief
* The printf format string modifier to use with isc_uint64_t values.
*/
#define ISC_PLATFORM_QUADFORMAT "ll"
-/*
+/*! \brief
* Defined if we are using threads.
*/
-#undef ISC_PLATFORM_USETHREADS
+#define ISC_PLATFORM_USETHREADS 1
-/*
+/*! \brief
* Defined if unistd.h does not cause fd_set to be delared.
*/
#undef ISC_PLATFORM_NEEDSYSSELECTH
-/*
+/*! \brief
* Type used for resource limits.
*/
#define ISC_PLATFORM_RLIMITTYPE rlim_t
-/*
+/*! \brief
* Define if your compiler supports "long long int".
*/
#define ISC_PLATFORM_HAVELONGLONG 1
-/*
+/*! \brief
* Define if the system has struct lifconf which is a extended struct ifconf
* for IPv6.
*/
#undef ISC_PLATFORM_HAVELIFCONF
-/*
+/*! \brief
* Define if the system has struct if_laddrconf which is a extended struct
* ifconf for IPv6.
*/
#undef ISC_PLATFORM_HAVEIF_LADDRCONF
-/*
+/*! \brief
* Define if the system has struct if_laddrreq.
*/
#undef ISC_PLATFORM_HAVEIF_LADDRREQ
-/*
+/*! \brief
* Used to control how extern data is linked; needed for Win32 platforms.
*/
#undef ISC_PLATFORM_USEDECLSPEC
-/*
+/*! \brief
* Define if the system supports if_nametoindex.
*/
#define ISC_PLATFORM_HAVEIFNAMETOINDEX 1
-/*
+/*! \brief
* Define if this system needs strtoul.
*/
#undef ISC_PLATFORM_NEEDSTRTOUL
-/*
+/*! \brief
* Define if this system needs memmove.
*/
#undef ISC_PLATFORM_NEEDMEMMOVE
+/*
+ * Define if the platform has <sys/un.h>.
+ */
+#define ISC_PLATFORM_HAVESYSUNH 1
+
+/*
+ * If the "xadd" operation is available on this architecture,
+ * ISC_PLATFORM_HAVEXADD will be defined.
+ */
+#define ISC_PLATFORM_HAVEXADD 1
+
+/*
+ * If the "atomic swap" operation is available on this architecture,
+ * ISC_PLATFORM_HAVEATOMICSTORE" will be defined.
+ */
+#define ISC_PLATFORM_HAVEATOMICSTORE 1
+
+/*
+ * If the "compare-and-exchange" operation is available on this architecture,
+ * ISC_PLATFORM_HAVECMPXCHG will be defined.
+ */
+#define ISC_PLATFORM_HAVECMPXCHG 1
+
+/*
+ * Define if gcc ASM extension is available
+ */
+#define ISC_PLATFORM_USEGCCASM 1
+
+/*
+ * Define if Tru64 style ASM syntax must be used.
+ */
+#undef ISC_PLATFORM_USEOSFASM
+
+/*
+ * Define if the standard __asm function must be used.
+ */
+
+
+/*
+ * Define if MacOS style of PPC assembly must be used.
+ * e.g. "r6", not "6", for register six.
+ */
+
+
#ifndef ISC_PLATFORM_USEDECLSPEC
#define LIBISC_EXTERNAL_DATA
#define LIBDNS_EXTERNAL_DATA
#define LIBISCCC_EXTERNAL_DATA
#define LIBISCCFG_EXTERNAL_DATA
#define LIBBIND9_EXTERNAL_DATA
-#else /* ISC_PLATFORM_USEDECLSPEC */
+#else /*! \brief ISC_PLATFORM_USEDECLSPEC */
#ifdef LIBISC_EXPORTS
#define LIBISC_EXTERNAL_DATA __declspec(dllexport)
#else
@@ -242,7 +293,7 @@
#else
#define LIBBIND9_EXTERNAL_DATA __declspec(dllimport)
#endif
-#endif /* ISC_PLATFORM_USEDECLSPEC */
+#endif /*! \brief ISC_PLATFORM_USEDECLSPEC */
/*
* Tell emacs to use C mode for this file.
Index: config.h
===================================================================
RCS file: /home/cvs/src/lib/bind/config.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -L lib/bind/config.h -L lib/bind/config.h -u -r1.3 -r1.4
--- lib/bind/config.h
+++ lib/bind/config.h
@@ -1,9 +1,7 @@
-/* $FreeBSD: src/lib/bind/config.h,v 1.2.2.2.4.1 2006/12/13 09:52:30 dougb Exp $ */
-
-/* config.h. Generated by configure. */
+/* config.h. Generated from config.h.in by configure. */
/* config.h.in. Generated from configure.in by autoheader. */
/*
- * Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2003 Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
@@ -19,102 +17,106 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: acconfig.h,v 1.35.2.4.2.10 2004/12/04 06:50:02 marka Exp $ */
+/* $Id: acconfig.h,v 1.44.18.5 2005/04/29 00:15:20 marka Exp $ */
+
+/*! \file */
/***
*** This file is not to be included by any public header files, because
*** it does not get installed.
***/
-/* define to `int' if <sys/types.h> doesn't define. */
+/** define to `int' if <sys/types.h> doesn't define. */
/* #undef ssize_t */
-/* define on DEC OSF to enable 4.4BSD style sa_len support */
+/** define on DEC OSF to enable 4.4BSD style sa_len support */
/* #undef _SOCKADDR_LEN */
-/* define if your system needs pthread_init() before using pthreads */
+/** define if your system needs pthread_init() before using pthreads */
/* #undef NEED_PTHREAD_INIT */
-/* define if your system has sigwait() */
-/* #undef HAVE_SIGWAIT */
+/** define if your system has sigwait() */
+#define HAVE_SIGWAIT 1
-/* define if sigwait() is the UnixWare flavor */
+/** define if sigwait() is the UnixWare flavor */
/* #undef HAVE_UNIXWARE_SIGWAIT */
-/* define on Solaris to get sigwait() to work using pthreads semantics */
+/** define on Solaris to get sigwait() to work using pthreads semantics */
/* #undef _POSIX_PTHREAD_SEMANTICS */
-/* define if LinuxThreads is in use */
+/** define if LinuxThreads is in use */
/* #undef HAVE_LINUXTHREADS */
-/* define if sysconf() is available */
-/* #undef HAVE_SYSCONF */
+/** define if sysconf() is available */
+#define HAVE_SYSCONF 1
-/* define if sysctlbyname() is available */
+/** define if sysctlbyname() is available */
#define HAVE_SYSCTLBYNAME 1
-/* define if catgets() is available */
+/** define if catgets() is available */
#define HAVE_CATGETS 1
-/* define if getifaddrs() exists */
+/** define if getifaddrs() exists */
#define HAVE_GETIFADDRS 1
-/* define if you have the NET_RT_IFLIST sysctl variable and sys/sysctl.h */
+/** define if you have the NET_RT_IFLIST sysctl variable and sys/sysctl.h */
#define HAVE_IFLIST_SYSCTL 1
-/* define if chroot() is available */
+/** define if chroot() is available */
#define HAVE_CHROOT 1
-/* define if tzset() is available */
+/** define if tzset() is available */
#define HAVE_TZSET 1
-/* define if struct addrinfo exists */
+/** define if struct addrinfo exists */
#define HAVE_ADDRINFO 1
-/* define if getaddrinfo() exists */
+/** define if getaddrinfo() exists */
#define HAVE_GETADDRINFO 1
-/* define if gai_strerror() exists */
+/** define if gai_strerror() exists */
#define HAVE_GAISTRERROR 1
-/* define if arc4random() exists */
+/** define if arc4random() exists */
#define HAVE_ARC4RANDOM 1
-/* define if pthread_setconcurrency() should be called to tell the
+/**
+ * define if pthread_setconcurrency() should be called to tell the
* OS how many threads we might want to run.
*/
/* #undef CALL_PTHREAD_SETCONCURRENCY */
-/* define if IPv6 is not disabled */
+/** define if IPv6 is not disabled */
/* #undef WANT_IPV6 */
-/* define if flockfile() is available */
+/** define if flockfile() is available */
#define HAVE_FLOCKFILE 1
-/* define if getc_unlocked() is available */
+/** define if getc_unlocked() is available */
#define HAVE_GETCUNLOCKED 1
-/* Shut up warnings about sputaux in stdio.h on BSD/OS pre-4.1 */
+/** Shut up warnings about sputaux in stdio.h on BSD/OS pre-4.1 */
/* #undef SHUTUP_SPUTAUX */
#ifdef SHUTUP_SPUTAUX
struct __sFILE;
extern __inline int __sputaux(int _c, struct __sFILE *_p);
#endif
-/* Shut up warnings about missing sigwait prototype on BSD/OS 4.0* */
+/** Shut up warnings about missing sigwait prototype on BSD/OS 4.0* */
/* #undef SHUTUP_SIGWAIT */
#ifdef SHUTUP_SIGWAIT
int sigwait(const unsigned int *set, int *sig);
#endif
-/* Shut up warnings from gcc -Wcast-qual on BSD/OS 4.1. */
+/** Shut up warnings from gcc -Wcast-qual on BSD/OS 4.1. */
/* #undef SHUTUP_STDARG_CAST */
#if defined(SHUTUP_STDARG_CAST) && defined(__GNUC__)
-#include <stdarg.h> /* Grr. Must be included *every time*. */
-/*
+#include <stdarg.h> /** Grr. Must be included *every time*. */
+/**
* The silly continuation line is to keep configure from
* commenting out the #undef.
*/
+
#undef \
va_start
#define va_start(ap, last) \
@@ -123,21 +125,21 @@
_u.konst = &(last); \
ap = (va_list)(_u.var + __va_words(__typeof(last))); \
} while (0)
-#endif /* SHUTUP_STDARG_CAST && __GNUC__ */
+#endif /** SHUTUP_STDARG_CAST && __GNUC__ */
-/* define if the system has a random number generating device */
+/** define if the system has a random number generating device */
#define PATH_RANDOMDEV "/dev/random"
-/* define if pthread_attr_getstacksize() is available */
-/* #undef HAVE_PTHREAD_ATTR_GETSTACKSIZE */
+/** define if pthread_attr_getstacksize() is available */
+#define HAVE_PTHREAD_ATTR_GETSTACKSIZE 1
-/* define if pthread_attr_setstacksize() is available */
-/* #undef HAVE_PTHREAD_ATTR_SETSTACKSIZE */
+/** define if pthread_attr_setstacksize() is available */
+#define HAVE_PTHREAD_ATTR_SETSTACKSIZE 1
-/* define if you have strerror in the C library. */
+/** define if you have strerror in the C library. */
#define HAVE_STRERROR 1
-/* Define if you are running under Compaq TruCluster. */
+/** Define if you are running under Compaq TruCluster. */
/* #undef HAVE_TRUCLUSTER */
/* Define if OpenSSL includes DSA support */
@@ -147,7 +149,7 @@
#define ISC_SOCKADDR_LEN_T socklen_t
/* Define if threads need PTHREAD_SCOPE_SYSTEM */
-/* #undef NEED_PTHREAD_SCOPE_SYSTEM */
+#define NEED_PTHREAD_SCOPE_SYSTEM 1
/* Define if recvmsg() does not meet all of the BSD socket API specifications.
*/
@@ -156,11 +158,8 @@
/* Define if you cannot bind() before connect() for TCP sockets. */
/* #undef BROKEN_TCP_BIND_BEFORE_CONNECT */
-/* Define if libcrypto has DH_generate_parameters */
-#define HAVE_DH_GENERATE_PARAMETERS 1
-
-/* Define if libcrypto has DSA_generate_parameters */
-#define HAVE_DSA_GENERATE_PARAMETERS 1
+/* Define to 1 if you have the <dlfcn.h> header file. */
+/* #undef HAVE_DLFCN_H */
/* Define to 1 if you have the <fcntl.h> header file. */
#define HAVE_FCNTL_H 1
@@ -192,14 +191,17 @@
/* Define to 1 if you have the <linux/capability.h> header file. */
/* #undef HAVE_LINUX_CAPABILITY_H */
+/* Define to 1 if you have the <locale.h> header file. */
+#define HAVE_LOCALE_H 1
+
/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1
/* Define to 1 if you have the <net/if6.h> header file. */
/* #undef HAVE_NET_IF6_H */
-/* Define if libcrypto has RSA_generate_key */
-#define HAVE_RSA_GENERATE_KEY 1
+/* Define to 1 if you have the `setlocale' function. */
+#define HAVE_SETLOCALE 1
/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1
@@ -237,6 +239,9 @@
/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1
+/* Define to 1 if you have the <sys/un.h> header file. */
+#define HAVE_SYS_UN_H 1
+
/* Define if running under Compaq TruCluster */
/* #undef HAVE_TRUCLUSTER */
@@ -246,6 +251,10 @@
/* Defined if extern char *optarg is not declared. */
/* #undef NEED_OPTARG */
+/* Define if connect does not honour the permission on the UNIX domain socket.
+ */
+/* #undef NEED_SECURE_DIRECTORY */
+
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT ""
@@ -275,6 +284,9 @@
non-blocking. */
/* #undef USE_FIONBIO_IOCTL */
+/* define if idnkit support is to be included. */
+/* #undef WITH_IDN */
+
/* 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 */
@@ -288,7 +300,7 @@
/* #undef inline */
#endif
-/* Define to `unsigned' if <sys/types.h> does not define. */
+/* Define to `unsigned int' if <sys/types.h> does not define. */
/* #undef size_t */
/* Define to `int' if <sys/types.h> does not define. */
Index: platform.h
===================================================================
RCS file: /home/cvs/src/lib/bind/lwres/lwres/platform.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -L lib/bind/lwres/lwres/platform.h -L lib/bind/lwres/lwres/platform.h -u -r1.2 -r1.3
--- lib/bind/lwres/lwres/platform.h
+++ lib/bind/lwres/lwres/platform.h
@@ -15,7 +15,9 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: platform.h.in,v 1.12.2.1.10.5 2005/06/08 02:08:32 marka Exp $ */
+/* $Id: platform.h.in,v 1.14.18.5 2005/06/08 02:07:59 marka Exp $ */
+
+/*! \file */
#ifndef LWRES_PLATFORM_H
#define LWRES_PLATFORM_H 1
@@ -108,4 +110,11 @@
#endif
#endif
+/*
+ * Tell Emacs to use C mode on this file.
+ * Local Variables:
+ * mode: c
+ * End:
+ */
+
#endif /* LWRES_PLATFORM_H */
Index: netdb.h
===================================================================
RCS file: /home/cvs/src/lib/bind/lwres/lwres/netdb.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -L lib/bind/lwres/lwres/netdb.h -L lib/bind/lwres/lwres/netdb.h -u -r1.2 -r1.3
--- lib/bind/lwres/lwres/netdb.h
+++ lib/bind/lwres/lwres/netdb.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
@@ -15,7 +15,9 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: netdb.h.in,v 1.34.206.1 2004/03/06 08:15:35 marka Exp $ */
+/* $Id: netdb.h.in,v 1.35.18.2 2005/04/29 00:17:22 marka Exp $ */
+
+/*! \file */
#ifndef LWRES_NETDB_H
#define LWRES_NETDB_H 1
More information about the Midnightbsd-cvs
mailing list