3269. [port] darwin 11 and later now built threaded by default.

This commit is contained in:
Mark Andrews 2012-01-30 07:08:34 +00:00
parent 52007e22c5
commit 25240dd390
2 changed files with 5 additions and 1 deletions

View file

@ -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]

View file

@ -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 ;;