You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2009/06/02 18:15:46 UTC

svn commit: r781073 - /apr/apr/branches/1.3.x/build/apr_hints.m4

Author: wrowe
Date: Tue Jun  2 16:15:46 2009
New Revision: 781073

URL: http://svn.apache.org/viewvc?rev=781073&view=rev
Log:
Temporary workaround to various testsocket and kernel panics, until we get
a better understanding of how Darwin varied from BSD.  Note this isn't the
first oddball sockets case, sendfile is similarly "mis-implemented" in Darwin.

Modified:
    apr/apr/branches/1.3.x/build/apr_hints.m4

Modified: apr/apr/branches/1.3.x/build/apr_hints.m4
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.3.x/build/apr_hints.m4?rev=781073&r1=781072&r2=781073&view=diff
==============================================================================
--- apr/apr/branches/1.3.x/build/apr_hints.m4 (original)
+++ apr/apr/branches/1.3.x/build/apr_hints.m4 Tue Jun  2 16:15:46 2009
@@ -194,9 +194,10 @@
     *-apple-darwin*)
         APR_ADDTO(CPPFLAGS, [-DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -no-cpp-precomp])
         APR_SETIFNULL(apr_posixsem_is_global, [yes])
-        # kqueue works in 10.5/Darwin 9.x. Disable on all older versions.
+        # kqueue appeared to work in 10.5/Darwin 9.x and was entirely broken in 
+        # previous versions.  disable it in any case for now until resolved;
         case $host in
-            *-apple-darwin[[0-8]].*)
+            *-apple-darwin*)
             # kqueue is broken on OS X, the poll tests work, but the socket tests
             # hang when it's turned on.  if you decide to reenable this please be
             # sure to test that ALL the tests continue to work with it turned on.