]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
3243. [port] netbsd,bsdi: the thread defaults were not being
authorMark Andrews <marka@isc.org>
Fri, 16 Dec 2011 00:08:14 +0000 (00:08 +0000)
committerMark Andrews <marka@isc.org>
Fri, 16 Dec 2011 00:08:14 +0000 (00:08 +0000)
                        properly set.

CHANGES
config.threads.in

diff --git a/CHANGES b/CHANGES
index dd2dfc4b8acffcad1ac259c8ffe8ae7e92d8cd63..943900087c9fae4c2544dfadabb7e5ef6c0db1de 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+3243.  [port]          netbsd,bsdi: the thread defaults were not being
+                       properly set.
+
 3241.  [bug]           Address race conditions in the resolver code.
                        [RT #26889]
 
index e7a8d609ccb12f1299e5ec20fca29fd2f1884b17..a56ca37d4830d04df56d659748c1bbc2b265218c 100644 (file)
@@ -33,8 +33,9 @@ case $host in
 *-*-sysv*OpenUNIX*)
         # UnixWare
        use_threads=true ;;
-*-netbsd[1234].*)
-       # NetBSD earlier than NetBSD 5.0 has poor pthreads.  Don't use it by default.
+[*-netbsd[1234].*])
+       # NetBSD earlier than NetBSD 5.0 has poor pthreads.
+       #  Don't use it by default.
        use_threads=false ;;
 *-netbsd*)
        use_threads=true ;;
@@ -44,7 +45,7 @@ case $host in
        use_threads=false ;;
 *-freebsd*)
        use_threads=false ;;
-*-bsdi[234]*)
+[*-bsdi[234]*])
        # Thread signals do not work reliably on some versions of BSD/OS.
        use_threads=false ;;
 *-bsdi5*)