mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-02 21:40:43 -05:00
2318. [port] sunos fixes for libbind. [RT #17514]
This commit is contained in:
parent
2e4a791f95
commit
b1d16c1585
7 changed files with 7709 additions and 7736 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,8 +1,7 @@
|
|||
2319. [bug] Silence Coverity warnings in
|
||||
lib/dns/rdata/in_1/apl_42.c. [RT #17469]
|
||||
|
||||
2318. [port] ISC_PLATFORM_NEEDTIMESPEC missing from
|
||||
lib/bind/config.h.in. [RT #17514]
|
||||
2318. [port] sunos fixes for libbind. [RT #17514]
|
||||
|
||||
2314. [bug] Uninitialized memory use on error path in
|
||||
bin/named/lwdnoop.c. [RT #17476]
|
||||
|
|
|
|||
|
|
@ -13,7 +13,6 @@
|
|||
#undef POSIX_GETGRNAM_R
|
||||
#undef HAVE_MEMMOVE
|
||||
#undef HAVE_MEMCHR
|
||||
#undef ISC_PLATFORM_NEEDTIMESPEC
|
||||
|
||||
#undef NEED_SETGROUPENT
|
||||
#undef NEED_GETGROUPLIST
|
||||
|
|
|
|||
15423
lib/bind/configure
vendored
15423
lib/bind/configure
vendored
File diff suppressed because it is too large
Load diff
|
|
@ -13,7 +13,7 @@
|
|||
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
# PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
AC_REVISION($Revision: 1.83.2.5.2.36 $)
|
||||
AC_REVISION($Revision: 1.83.2.5.2.37 $)
|
||||
|
||||
AC_INIT(resolv/herror.c)
|
||||
AC_PREREQ(2.13)
|
||||
|
|
@ -2675,6 +2675,7 @@ AC_OUTPUT(
|
|||
port/Makefile
|
||||
${PORT_DIR}/Makefile
|
||||
${PORT_INCLUDE}/Makefile
|
||||
include/isc/platform.h
|
||||
)
|
||||
|
||||
# Tell Emacs to edit this file in shell mode.
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
# PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: Makefile.in,v 1.3.206.1 2004/03/06 08:13:22 marka Exp $
|
||||
# $Id: Makefile.in,v 1.3.206.2 2008/01/23 02:08:48 marka Exp $
|
||||
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
|
@ -24,7 +24,7 @@ HEADERS=fd_setsize.h hesiod.h irp.h irs.h netdb.h netgroup.h res_update.h \
|
|||
AHEADERS= arpa/inet.h arpa/nameser.h arpa/nameser_compat.h
|
||||
IHEADERS= isc/assertions.h isc/ctl.h isc/dst.h isc/eventlib.h isc/heap.h \
|
||||
isc/irpmarshall.h isc/list.h isc/logging.h isc/memcluster.h \
|
||||
isc/misc.h isc/tree.h
|
||||
isc/misc.h isc/tree.h isc/platform.h.in
|
||||
|
||||
all:
|
||||
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
/* eventlib.h - exported interfaces for eventlib
|
||||
* vix 09sep95 [initial]
|
||||
*
|
||||
* $Id: eventlib.h,v 1.1.2.1.4.2 2005/07/28 07:43:18 marka Exp $
|
||||
* $Id: eventlib.h,v 1.1.2.1.4.3 2008/01/23 02:08:48 marka Exp $
|
||||
*/
|
||||
|
||||
#ifndef _EVENTLIB_H
|
||||
|
|
@ -29,6 +29,8 @@
|
|||
#include <sys/time.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <isc/platform.h>
|
||||
|
||||
#ifndef __P
|
||||
# define __EVENTLIB_P_DEFINED
|
||||
# ifdef __STDC__
|
||||
|
|
|
|||
|
|
@ -36,6 +36,13 @@
|
|||
@USE_IFNAMELINKID@
|
||||
@PORT_NONBLOCK@
|
||||
|
||||
#ifndef _POSIX_PATH_MAX
|
||||
#define _POSIX_PATH_MAX 255
|
||||
#endif
|
||||
#ifndef PATH_MAX
|
||||
#define PATH_MAX _POSIX_PATH_MAX
|
||||
#endif
|
||||
|
||||
/*
|
||||
* We need to know the IPv6 address family number even on IPv4-only systems.
|
||||
* Note that this is NOT a protocol constant, and that if the system has its
|
||||
|
|
|
|||
Loading…
Reference in a new issue