]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
pullup:
authorAndreas Gustafsson <source@isc.org>
Wed, 3 Jan 2001 20:26:47 +0000 (20:26 +0000)
committerAndreas Gustafsson <source@isc.org>
Wed, 3 Jan 2001 20:26:47 +0000 (20:26 +0000)
645. [port] BSD/OS 3.0 needs pthread_init(). [RT #603]

CHANGES
configure
configure.in

diff --git a/CHANGES b/CHANGES
index 0906c3fa64856012ae3c25bda0e451a65a336064..4d03034d0cfe896f4b75cb8300871df016ac6feb 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,6 @@
 
+ 645.  [port]          BSD/OS 3.0 needs pthread_init(). [RT #603]
+
  642.  [bug]           Break the exit_check() race in the zone module.
                        [RT #598]
 
index 4dacd41d595bbd4954e4ac78122bddfd99584fc9..69747b88e482208d41b7b697256429482ade63b1 100755 (executable)
--- a/configure
+++ b/configure
@@ -2556,11 +2556,11 @@ fi
 
                        ;;
                #
-               # BSDI 3.1 through 4.0.1 needs pthread_init() to be
+               # BSDI 3.0 through 4.0.1 needs pthread_init() to be
                # called before certain pthreads calls.  This is deprecated
                # in BSD/OS 4.1.
                #
-               *-bsdi3.1*|*-bsdi4.0*)
+               *-bsdi3.*|*-bsdi4.0*)
                        cat >> confdefs.h <<\EOF
 #define NEED_PTHREAD_INIT 1
 EOF
index 82d5a7426875a64d3089d877d12456b97115e7b8..13aef362a0fd29c86ab869b68dae047affa629b3 100644 (file)
@@ -18,7 +18,7 @@ AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl
 esyscmd([sed "s/^/# /" COPYRIGHT])dnl
 AC_DIVERT_POP()dnl
 
-AC_REVISION($Revision: 1.205.2.1 $)
+AC_REVISION($Revision: 1.205.2.2 $)
 
 AC_INIT(lib/dns/name.c)
 AC_PREREQ(2.13)
@@ -412,11 +412,11 @@ then
                        AC_CHECK_LIB(c_r, sigwait, AC_DEFINE(HAVE_SIGWAIT),)
                        ;;
                #
-               # BSDI 3.1 through 4.0.1 needs pthread_init() to be
+               # BSDI 3.0 through 4.0.1 needs pthread_init() to be
                # called before certain pthreads calls.  This is deprecated
                # in BSD/OS 4.1.
                #
-               *-bsdi3.1*|*-bsdi4.0*)
+               *-bsdi3.*|*-bsdi4.0*)
                        AC_DEFINE(NEED_PTHREAD_INIT)
                        ;;
                #