aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2007-02-04 21:19:50 +0000
committerMatthias Andree <matthias.andree@gmx.de>2007-02-04 21:19:50 +0000
commitbf1036ca5c3ca68266736bb9e1127f7eb204d684 (patch)
tree54d6406b7fca84c171afd4a478833079740b0d78
parentc2ad9c7b02fd27992fce88daa2d3dac6bed5bfb6 (diff)
downloadfetchmail-bf1036ca5c3ca68266736bb9e1127f7eb204d684.tar.gz
fetchmail-bf1036ca5c3ca68266736bb9e1127f7eb204d684.tar.bz2
fetchmail-bf1036ca5c3ca68266736bb9e1127f7eb204d684.zip
Whitelist Darwin 9 (MacOS X 10.5 'Leopard') with a thread-safe getaddrinfo().
Reported by Uli Zappe. svn path=/branches/BRANCH_6-3/; revision=5028
-rw-r--r--NEWS4
-rw-r--r--configure.ac1
2 files changed, 5 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index e6e2b580..9c8a20b7 100644
--- a/NEWS
+++ b/NEWS
@@ -52,6 +52,10 @@ fetchmail 6.3.7 (not yet released):
# TRANSLATION UPDATES
* Japanese (Takeshi Hamasaki), Polish (Jakub Bogusz)
+# CHANGES
+* Consider getaddrinfo() on Darwin 9 (Mac OS X 10.5 "Leopard") thread-safe.
+ Reported by Uli Zappe.
+
# KNOWN BUGS AND WORKAROUNDS:
(this section floats upwards through the NEWS file so it stays with the
current release information)
diff --git a/configure.ac b/configure.ac
index 60589526..69c24147 100644
--- a/configure.ac
+++ b/configure.ac
@@ -442,6 +442,7 @@ if test "$ac_cv_search_getaddrinfo" = "none required" ; then
gai_ts=no
dnl we have getaddrinfo() - check if the OS is known to have a async-signal-safe implementation
case $target_os in
+ darwin9*) gai_ts=yes ;;
linux*) gai_ts=yes ;;
freebsd5.5|freebsd6*|freebsd7*) gai_ts=yes ;;
solaris2.8|solaris2.9|solaris2.10) gai_ts=yes ;;