Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 39759 invoked from network); 6 Feb 2010 18:50:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 6 Feb 2010 18:50:00 -0000 Received: (qmail 70736 invoked by uid 500); 6 Feb 2010 18:50:00 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 70674 invoked by uid 500); 6 Feb 2010 18:50: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 70665 invoked by uid 99); 6 Feb 2010 18:50:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 06 Feb 2010 18:50:00 +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; Sat, 06 Feb 2010 18:49:57 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1731D23889E3; Sat, 6 Feb 2010 18:49:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r907274 - /apr/apr/branches/1.4.x/build/apr_hints.m4 Date: Sat, 06 Feb 2010 18:49:35 -0000 To: commits@apr.apache.org From: covener@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100206184937.1731D23889E3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: covener Date: Sat Feb 6 18:49:34 2010 New Revision: 907274 URL: http://svn.apache.org/viewvc?rev=907274&view=rev Log: backport r907272 from trunk: newer config.sub/config.guess sets host type of e.g. 'powerpc64-suse-linux', which wasn't matching our *-linux-* pattern. older config.sub/config.guess returned 'powerpc64-unknown-linux-gnu' on one such host (SLES 10.2/PPC64) Modified: apr/apr/branches/1.4.x/build/apr_hints.m4 Modified: apr/apr/branches/1.4.x/build/apr_hints.m4 URL: http://svn.apache.org/viewvc/apr/apr/branches/1.4.x/build/apr_hints.m4?rev=907274&r1=907273&r2=907274&view=diff ============================================================================== --- apr/apr/branches/1.4.x/build/apr_hints.m4 (original) +++ apr/apr/branches/1.4.x/build/apr_hints.m4 Sat Feb 6 18:49:34 2010 @@ -118,7 +118,7 @@ *-hp-hpux*) APR_ADDTO(CPPFLAGS, [-DHPUX -D_REENTRANT]) ;; - *-linux-*) + *-linux*) case `uname -r` in 2.* ) APR_ADDTO(CPPFLAGS, [-DLINUX=2]) ;;