From 25240dd3901decc9cbe7c00c0ea88c13a1a00d0a Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Mon, 30 Jan 2012 07:08:34 +0000 Subject: [PATCH] 3269. [port] darwin 11 and later now built threaded by default. --- CHANGES | 2 ++ config.threads.in | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 8468931c5c..376ca421fe 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,7 @@ --- 9.9.0 released --- +3269. [port] darwin 11 and later now built threaded by default. + 3268. [bug] Convert RRSIG expiry times to 64 timestamps to work out the earliest expiry time. [RT #23311] diff --git a/config.threads.in b/config.threads.in index 3dd9ea761c..3094ab087c 100644 --- a/config.threads.in +++ b/config.threads.in @@ -60,7 +60,9 @@ case $host in # Linux kernels produce unusable core dumps from multithreaded # programs, and because of limitations in setuid(). use_threads=false ;; -*-darwin10.*) +*-darwin[[123456789]].*) + use_threads=false ;; +*-darwin*.*) use_threads=true ;; *) use_threads=false ;;