Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 77015 invoked from network); 1 Sep 2009 01:57:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 1 Sep 2009 01:57:37 -0000 Received: (qmail 85300 invoked by uid 500); 1 Sep 2009 01:57:37 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 85239 invoked by uid 500); 1 Sep 2009 01:57:37 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 85230 invoked by uid 99); 1 Sep 2009 01:57:37 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Sep 2009 01:57:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Sep 2009 01:57:34 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CA894238888F; Tue, 1 Sep 2009 01:57:13 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r809796 - /apr/apr/trunk/build/apr_hints.m4 Date: Tue, 01 Sep 2009 01:57:13 -0000 To: commits@apr.apache.org From: pquerna@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090901015713.CA894238888F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: pquerna Date: Tue Sep 1 01:57:13 2009 New Revision: 809796 URL: http://svn.apache.org/viewvc?rev=809796&view=rev Log: Enable KQueue on OS X 10.6+ Modified: apr/apr/trunk/build/apr_hints.m4 Modified: apr/apr/trunk/build/apr_hints.m4 URL: http://svn.apache.org/viewvc/apr/apr/trunk/build/apr_hints.m4?rev=809796&r1=809795&r2=809796&view=diff ============================================================================== --- apr/apr/trunk/build/apr_hints.m4 (original) +++ apr/apr/trunk/build/apr_hints.m4 Tue Sep 1 01:57:13 2009 @@ -195,13 +195,12 @@ APR_ADDTO(CPPFLAGS, [-DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -no-cpp-precomp]) APR_SETIFNULL(apr_posixsem_is_global, [yes]) case $host in - *-apple-darwin*) + *-apple-darwin[[0-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+ 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