mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-15 22:09:31 -04:00
1498. [port] bsdos: 5.x support.
This commit is contained in:
parent
e005dea325
commit
597e257fdf
7 changed files with 22 additions and 24 deletions
4
CHANGES
4
CHANGES
|
|
@ -1,8 +1,8 @@
|
|||
|
||||
1498. [port] bsdos: 5.x support.
|
||||
|
||||
--- 9.2.3rc1 released ---
|
||||
|
||||
1498. [port] bsdos: 5.x support.
|
||||
|
||||
1497. [protocol] dig, nslookup and host now perform nibble lookups
|
||||
under IP6.ARPA, use -i for IP6.INT (dig and host).
|
||||
lwres now uses IP6.ARPA.
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
# NEGLIGENCE 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.7 2003/07/22 04:03:38 marka Exp $
|
||||
# $Id: ifconfig.sh,v 1.35.2.8 2003/07/30 01:55:50 marka Exp $
|
||||
|
||||
#
|
||||
# Set up interface aliases for bind9 system tests.
|
||||
|
|
@ -67,7 +67,7 @@ case "$1" in
|
|||
*-unknown-netbsd*)
|
||||
ifconfig lo0 10.53.0.$ns alias netmask 255.255.255.0
|
||||
;;
|
||||
*-pc-bsdi[3-4].*)
|
||||
*-*-bsdi[3-5].*)
|
||||
ifconfig lo0 add 10.53.0.$ns netmask 255.255.255.0
|
||||
;;
|
||||
*-dec-osf[4-5].*)
|
||||
|
|
@ -127,7 +127,7 @@ case "$1" in
|
|||
*-unknown-netbsd*)
|
||||
ifconfig lo0 10.53.0.$ns delete
|
||||
;;
|
||||
*-pc-bsdi[3-4].*)
|
||||
*-*-bsdi[3-5].*)
|
||||
ifconfig lo0 remove 10.53.0.$ns
|
||||
;;
|
||||
*-dec-osf[4-5].*)
|
||||
|
|
|
|||
18
configure
vendored
18
configure
vendored
|
|
@ -1,5 +1,5 @@
|
|||
#! /bin/sh
|
||||
# From configure.in Revision: 1.294.2.22 .
|
||||
# From configure.in Revision: 1.294.2.23 .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.53.
|
||||
#
|
||||
|
|
@ -4659,9 +4659,11 @@ case $host in
|
|||
use_threads=false ;;
|
||||
*-freebsd*)
|
||||
use_threads=false ;;
|
||||
*-bsdi*)
|
||||
# Thread signals do not appear to work reliably on BSDI.
|
||||
*-bsdi234*)
|
||||
# Thread signals do not work reliably on some versions of BSD/OS.
|
||||
use_threads=false ;;
|
||||
*-bsdi5*)
|
||||
use_threads=true ;;
|
||||
*-linux*)
|
||||
# Threads are disabled on Linux by default because most
|
||||
# Linux kernels produce unusable core dumps from multithreaded
|
||||
|
|
@ -7461,7 +7463,7 @@ test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
|
|||
case $host in
|
||||
*-*-irix6*)
|
||||
# Find out which ABI we are using.
|
||||
echo '#line 7464 "configure"' > conftest.$ac_ext
|
||||
echo '#line 7466 "configure"' > conftest.$ac_ext
|
||||
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||
(eval $ac_compile) 2>&5
|
||||
ac_status=$?
|
||||
|
|
@ -8004,7 +8006,7 @@ chmod -w .
|
|||
save_CFLAGS="$CFLAGS"
|
||||
CFLAGS="$CFLAGS -o out/conftest2.$ac_objext"
|
||||
compiler_c_o=no
|
||||
if { (eval echo configure:8007: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then
|
||||
if { (eval echo configure:8009: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then
|
||||
# The compiler can only warn and ignore the option if not recognized
|
||||
# So say no if there are warnings
|
||||
if test -s out/conftest.err; then
|
||||
|
|
@ -8947,7 +8949,7 @@ beos*)
|
|||
shlibpath_var=LIBRARY_PATH
|
||||
;;
|
||||
|
||||
bsdi4*)
|
||||
bsdi45*)
|
||||
version_type=linux
|
||||
need_version=no
|
||||
library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
|
||||
|
|
@ -9689,7 +9691,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
#line 9692 "configure"
|
||||
#line 9694 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
@ -9787,7 +9789,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
#line 9790 "configure"
|
||||
#line 9792 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
|
|||
8
lib/bind/configure
vendored
8
lib/bind/configure
vendored
|
|
@ -1,5 +1,5 @@
|
|||
#! /bin/sh
|
||||
# From configure.in Revision: 1.83.2.4 .
|
||||
# From configure.in Revision: 1.83.2.5 .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.53.
|
||||
#
|
||||
|
|
@ -8572,7 +8572,7 @@ beos*)
|
|||
shlibpath_var=LIBRARY_PATH
|
||||
;;
|
||||
|
||||
bsdi4*)
|
||||
bsdi45*)
|
||||
version_type=linux
|
||||
need_version=no
|
||||
library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
|
||||
|
|
@ -10837,9 +10837,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
|
|||
# HAVE_MINIMUM_IFREQ
|
||||
|
||||
case "$host" in
|
||||
*-bsdi4*) have_minimum_ifreq=yes;;
|
||||
*-bsdi3*) have_minimum_ifreq=yes;;
|
||||
*-bsdi2*) have_minimum_ifreq=yes;;
|
||||
*-bsdi2345*) have_minimum_ifreq=yes;;
|
||||
*-darwin*) have_minimum_ifreq=yes;;
|
||||
*-freebsd*) have_minimum_ifreq=yes;;
|
||||
*-lynxos*) have_minimum_ifreq=yes;;
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
||||
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
AC_REVISION($Revision: 1.83.2.4 $)
|
||||
AC_REVISION($Revision: 1.83.2.5 $)
|
||||
|
||||
AC_INIT(resolv/herror.c)
|
||||
AC_PREREQ(2.13)
|
||||
|
|
@ -1033,9 +1033,7 @@ AC_SUBST(HAVE_SA_LEN)
|
|||
# HAVE_MINIMUM_IFREQ
|
||||
|
||||
case "$host" in
|
||||
*-bsdi4*) have_minimum_ifreq=yes;;
|
||||
*-bsdi3*) have_minimum_ifreq=yes;;
|
||||
*-bsdi2*) have_minimum_ifreq=yes;;
|
||||
*-bsdi[2345]*) have_minimum_ifreq=yes;;
|
||||
*-darwin*) have_minimum_ifreq=yes;;
|
||||
*-freebsd*) have_minimum_ifreq=yes;;
|
||||
*-lynxos*) have_minimum_ifreq=yes;;
|
||||
|
|
|
|||
2
lib/bind/libtool.m4
vendored
2
lib/bind/libtool.m4
vendored
|
|
@ -1884,7 +1884,7 @@ beos*)
|
|||
shlibpath_var=LIBRARY_PATH
|
||||
;;
|
||||
|
||||
bsdi4*)
|
||||
bsdi[45]*)
|
||||
version_type=linux
|
||||
need_version=no
|
||||
library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
|
||||
|
|
|
|||
2
libtool.m4
vendored
2
libtool.m4
vendored
|
|
@ -1884,7 +1884,7 @@ beos*)
|
|||
shlibpath_var=LIBRARY_PATH
|
||||
;;
|
||||
|
||||
bsdi4*)
|
||||
bsdi[45]*)
|
||||
version_type=linux
|
||||
need_version=no
|
||||
library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
|
||||
|
|
|
|||
Loading…
Reference in a new issue