You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by co...@apache.org on 2010/02/06 19:49:06 UTC

svn commit: r907273 - /apr/apr/branches/1.5.x/build/apr_hints.m4

Author: covener
Date: Sat Feb  6 18:49:06 2010
New Revision: 907273

URL: http://svn.apache.org/viewvc?rev=907273&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.5.x/build/apr_hints.m4

Modified: apr/apr/branches/1.5.x/build/apr_hints.m4
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.5.x/build/apr_hints.m4?rev=907273&r1=907272&r2=907273&view=diff
==============================================================================
--- apr/apr/branches/1.5.x/build/apr_hints.m4 (original)
+++ apr/apr/branches/1.5.x/build/apr_hints.m4 Sat Feb  6 18:49:06 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])
 	           ;;