mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 10:59:35 -05:00
645. [port] BSD/OS 3.0 needs pthread_init(). [RT #603]
This commit is contained in:
parent
046a9aca49
commit
fa280ff02a
3 changed files with 10 additions and 7 deletions
5
CHANGES
5
CHANGES
|
|
@ -1,4 +1,7 @@
|
|||
642. [bug] #622 needed more work.
|
||||
|
||||
645. [port] BSD/OS 3.0 needs pthread_init(). [RT #603]
|
||||
|
||||
644. [bug] #622 needed more work. [RT #562]
|
||||
|
||||
643. [bug] xfrin error messages made more verbose, added class
|
||||
of the zone. [RT# 599]
|
||||
|
|
|
|||
6
configure
vendored
6
configure
vendored
|
|
@ -15,7 +15,7 @@
|
|||
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
||||
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# From configure.in Revision: 1.206
|
||||
# From configure.in Revision: 1.207
|
||||
|
||||
## libtool.m4 - Configure libtool for the target system. -*-Shell-script-*-
|
||||
## Copyright (C) 1996-1999, 2000 Free Software Foundation, Inc.
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl
|
|||
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
|
||||
AC_DIVERT_POP()dnl
|
||||
|
||||
AC_REVISION($Revision: 1.206 $)
|
||||
AC_REVISION($Revision: 1.207 $)
|
||||
|
||||
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)
|
||||
;;
|
||||
#
|
||||
|
|
|
|||
Loading…
Reference in a new issue