mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-20 17:05:21 -04:00
1726. [port] aix5: add support for aix5.
This commit is contained in:
parent
2d57540dde
commit
99df47c71c
6 changed files with 11 additions and 7 deletions
2
CHANGES
2
CHANGES
|
|
@ -1,3 +1,5 @@
|
|||
1726. [port] aix5: add support for aix5.
|
||||
|
||||
1723. [cleanup] Silence compiler warnings from t_tasks.c. [RT #12493]
|
||||
|
||||
1722. [bug] Don't commit the journal on malformed ixfr streams.
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
# PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: ifconfig.sh,v 1.35.2.10 2004/09/09 01:31:25 marka Exp $
|
||||
# $Id: ifconfig.sh,v 1.35.2.11 2004/09/24 06:04:47 marka Exp $
|
||||
|
||||
#
|
||||
# Set up interface aliases for bind9 system tests.
|
||||
|
|
@ -79,7 +79,7 @@ case "$1" in
|
|||
*-*-sysv5uw[7-8]*)
|
||||
ifconfig lo0 10.53.0.$ns alias netmask 0xffffffff
|
||||
;;
|
||||
*-ibm-aix4.*)
|
||||
*-ibm-aix4.*|*-ibm-aix5.*)
|
||||
ifconfig lo0 alias 10.53.0.$ns
|
||||
;;
|
||||
hpux)
|
||||
|
|
@ -139,7 +139,7 @@ case "$1" in
|
|||
*-*-sysv5uw[7-8]*)
|
||||
ifconfig lo0 -alias 10.53.0.$ns
|
||||
;;
|
||||
*-ibm-aix4.*)
|
||||
*-ibm-aix4.*|*-ibm-aix5.*)
|
||||
ifconfig lo0 delete 10.53.0.$ns
|
||||
;;
|
||||
hpux)
|
||||
|
|
|
|||
3
lib/bind/configure
vendored
3
lib/bind/configure
vendored
|
|
@ -1,5 +1,5 @@
|
|||
#! /bin/sh
|
||||
# From configure.in Revision: 1.83.2.8 .
|
||||
# From configure.in Revision: 1.83.2.9 .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.59.
|
||||
#
|
||||
|
|
@ -22932,6 +22932,7 @@ USE_FIONBIO_IOCTL="#undef USE_FIONBIO_IOCTL"
|
|||
case "$host" in
|
||||
*aix3.2*) PORT_DIR="port/aix32";;
|
||||
*aix4*) PORT_DIR="port/aix4";;
|
||||
*aix5*) PORT_DIR="port/aix5";;
|
||||
*aux3*) PORT_DIR="port/aux3";;
|
||||
*-bsdi2*) PORT_DIR="port/bsdos2";;
|
||||
*-bsdi*) PORT_DIR="port/bsdos";;
|
||||
|
|
|
|||
|
|
@ -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.8 $)
|
||||
AC_REVISION($Revision: 1.83.2.9 $)
|
||||
|
||||
AC_INIT(resolv/herror.c)
|
||||
AC_PREREQ(2.13)
|
||||
|
|
@ -1075,6 +1075,7 @@ USE_FIONBIO_IOCTL="#undef USE_FIONBIO_IOCTL"
|
|||
case "$host" in
|
||||
*aix3.2*) PORT_DIR="port/aix32";;
|
||||
*aix4*) PORT_DIR="port/aix4";;
|
||||
*aix5*) PORT_DIR="port/aix5";;
|
||||
*aux3*) PORT_DIR="port/aux3";;
|
||||
*-bsdi2*) PORT_DIR="port/bsdos2";;
|
||||
*-bsdi*) PORT_DIR="port/bsdos";;
|
||||
|
|
|
|||
|
|
@ -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.1 2004/09/24 04:32:32 marka Exp $
|
||||
# $Id: Makefile.in,v 1.1.6.1 2004/09/24 06:04:49 marka Exp $
|
||||
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@
|
|||
|
||||
/*
|
||||
* @(#)cdefs.h 8.1 (Berkeley) 6/2/93
|
||||
* $Id: cdefs.h,v 1.1 2004/09/24 04:32:33 marka Exp $
|
||||
* $Id: cdefs.h,v 1.1.6.1 2004/09/24 06:04:49 marka Exp $
|
||||
*/
|
||||
|
||||
#ifndef _CDEFS_H_
|
||||
|
|
|
|||
Loading…
Reference in a new issue