From commits-return-6972-apmail-apr-commits-archive=apr.apache.org@apr.apache.org Fri Sep 02 12:05:01 2005 Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 93589 invoked from network); 2 Sep 2005 12:05:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 2 Sep 2005 12:05:01 -0000 Received: (qmail 17655 invoked by uid 500); 2 Sep 2005 12:05:00 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 17620 invoked by uid 500); 2 Sep 2005 12:05:00 -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 17604 invoked by uid 99); 2 Sep 2005 12:05:00 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 02 Sep 2005 05:05:00 -0700 Received: (qmail 93560 invoked by uid 65534); 2 Sep 2005 12:05:00 -0000 Message-ID: <20050902120500.93558.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r267190 - /apr/apr/trunk/build/apr_hints.m4 Date: Fri, 02 Sep 2005 12:04:59 -0000 To: commits@apr.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: jorton Date: Fri Sep 2 05:04:57 2005 New Revision: 267190 URL: http://svn.apache.org/viewcvs?rev=267190&view=rev Log: * build/apr_hints.m4 (APR_PRELOAD): Disable readdir64_r on Solaris since the error handling seems to be broken. Modified: apr/apr/trunk/build/apr_hints.m4 Modified: apr/apr/trunk/build/apr_hints.m4 URL: http://svn.apache.org/viewcvs/apr/apr/trunk/build/apr_hints.m4?rev=267190&r1=267189&r2=267190&view=diff ============================================================================== --- apr/apr/trunk/build/apr_hints.m4 (original) +++ apr/apr/trunk/build/apr_hints.m4 Fri Sep 2 05:04:57 2005 @@ -232,6 +232,9 @@ PLATOSVERS=`echo $host | sed 's/^.*solaris2.//'` APR_ADDTO(CPPFLAGS, [-DSOLARIS2=$PLATOSVERS -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT]) APR_SETIFNULL(apr_lock_method, [USE_FCNTL_SERIALIZE]) + # readdir64_r error handling seems broken on Solaris (at least + # up till 2.8) -- it will return -1 at end-of-directory. + APR_SETIFNULL(ac_cv_func_readdir64_r, [no]) ;; *-sunos4*) APR_ADDTO(CPPFLAGS, [-DSUNOS4])