summaryrefslogtreecommitdiff
path: root/build/apr_hints.m4
diff options
context:
space:
mode:
authorjim <jim@13f79535-47bb-0310-9956-ffa450edef68>2009-10-01 13:21:25 +0000
committerjim <jim@13f79535-47bb-0310-9956-ffa450edef68>2009-10-01 13:21:25 +0000
commit2f8ef2e836fff4cb40828d3253798886f3a0d2e3 (patch)
treef8d815bf71ecde0f251f3e3a5b470c3e6ab586d6 /build/apr_hints.m4
parent8832fb6768271ae215e44bd641007e8b363d18e4 (diff)
downloadlibapr-2f8ef2e836fff4cb40828d3253798886f3a0d2e3.tar.gz
So far, kqueue on Darwin 10.x looks good....
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.4.x@820647 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/apr_hints.m4')
-rw-r--r--build/apr_hints.m47
1 files changed, 3 insertions, 4 deletions
diff --git a/build/apr_hints.m4 b/build/apr_hints.m4
index 3b2ba48c4..680cbf4b6 100644
--- a/build/apr_hints.m4
+++ b/build/apr_hints.m4
@@ -195,13 +195,12 @@ dnl # Not a problem in 10.20. Otherwise, who knows?
APR_ADDTO(CPPFLAGS, [-DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -no-cpp-precomp])
APR_SETIFNULL(apr_posixsem_is_global, [yes])
case $host in
- *-apple-darwin*)
- # APR's use of kqueue has triggered kernel panics for some
+ *-apple-darwin[[1-9]].*)
+ # APR's use of kqueue has triggered kernel panics for some
# 10.5.x (Darwin 9.x) users when running the entire test suite.
# In 10.4.x, use of kqueue would cause the socket tests to hang.
+ # 10.6+ (Darwin 10.x is supposed to fix the KQueue issues
APR_SETIFNULL(ac_cv_func_kqueue, [no])
- ;;
- *-apple-darwin[[0-8]].*)
APR_SETIFNULL(ac_cv_func_poll, [no]) # See issue 34332
;;
esac