Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 84348 invoked from network); 15 Mar 2005 22:53:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 15 Mar 2005 22:53:14 -0000 Received: (qmail 3626 invoked by uid 500); 15 Mar 2005 22:53:14 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 3569 invoked by uid 500); 15 Mar 2005 22:53:13 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list commits@apr.apache.org Received: (qmail 3553 invoked by uid 99); 15 Mar 2005 22:53:13 -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 minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Tue, 15 Mar 2005 14:53:12 -0800 Received: (qmail 84307 invoked by uid 65534); 15 Mar 2005 22:53:11 -0000 Message-ID: <20050315225311.84306.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Mailer: svnmailer-1.0.0-dev Date: Tue, 15 Mar 2005 22:53:11 -0000 Subject: svn commit: r157603 - in apr/apr/branches/1.1.x: CHANGES configure.in To: commits@apr.apache.org From: pquerna@apache.org X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: pquerna Date: Tue Mar 15 14:53:10 2005 New Revision: 157603 URL: http://svn.apache.org/viewcvs?view=3Drev&rev=3D157603 Log: Backport r151487 from trunk to fix rwlock detection.=20 Modified: apr/apr/branches/1.1.x/CHANGES apr/apr/branches/1.1.x/configure.in Modified: apr/apr/branches/1.1.x/CHANGES URL: http://svn.apache.org/viewcvs/apr/apr/branches/1.1.x/CHANGES?view=3Ddi= ff&r1=3D157602&r2=3D157603 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- apr/apr/branches/1.1.x/CHANGES (original) +++ apr/apr/branches/1.1.x/CHANGES Tue Mar 15 14:53:10 2005 @@ -1,5 +1,7 @@ Changes for APR 1.1.1 =20 + *) Fix posix rwlock detection on Darwin. [Aaron Bannert] + *) Build fix for Multicast support on HP-UX 11.00 and Tru64 [Joe Orton] =20 *) Fix libapr.rc for Win32 builds [William Rowe] Modified: apr/apr/branches/1.1.x/configure.in URL: http://svn.apache.org/viewcvs/apr/apr/branches/1.1.x/configure.in?view= =3Ddiff&r1=3D157602&r2=3D157603 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- apr/apr/branches/1.1.x/configure.in (original) +++ apr/apr/branches/1.1.x/configure.in Tue Mar 15 14:53:10 2005 @@ -603,7 +603,7 @@ dnl ----------------------------- Checking for pthread_rwlock_t AC_CACHE_CHECK([for pthread_rwlock_t], [apr_cv_type_rwlock_t], AC_TRY_COMPILE([#include -#include ], [pthread_rwlock_t rwlock=3DPTHREAD_RWLOCK_INITIALIZ= ER;], +#include ], [pthread_rwlock_t *rwlock;], [apr_cv_type_rwlock_t=3Dyes], [apr_cv_type_rwlock_t=3Dno],=20 [apr_cv_type_rwlock_t=3Dno])) if test "$apr_cv_type_rwlock_t" =3D "yes"; then