Update the recognision of GCC version numbers to handle the prefix text
authorRichard Levitte <levitte@openssl.org>
Wed, 5 Jun 2002 05:00:51 +0000 (05:00 +0000)
committerRichard Levitte <levitte@openssl.org>
Wed, 5 Jun 2002 05:00:51 +0000 (05:00 +0000)
that GCC 3.1 adds to the --version output

config

diff --git a/config b/config
index 3d443da6fb5e9047a47d424231353cfaf9bc29a7..00e4c76919712849aa3679152c48eb070bed1a5d 100755 (executable)
--- a/config
+++ b/config
@@ -390,11 +390,13 @@ exit 0
 
 # figure out if gcc is available and if so we use it otherwise
 # we fallback to whatever cc does on the system
-GCCVER=`(gcc --version) 2>/dev/null`
+GCCVER=`(gcc --version) 2>/dev/null | head -1`
 if [ "$GCCVER" != "" ]; then
   CC=gcc
-  # then strip off whatever prefix Cygnus prepends the number with...
-  GCCVER=`echo $GCCVER | sed 's/^[a-z]*\-//'`
+  # then strip off whatever prefix Cygnus as well as GCC 3.1 prepends
+  # the number with...  Hopefully, this will work for any future prefixes
+  # as well.
+  GCCVER=`echo $GCCVER | sed 's/^[a-zA-Z ()]*\-//'`
   # peak single digit before and after first dot, e.g. 2.95.1 gives 29
   GCCVER=`echo $GCCVER | sed 's/\([0-9]\)\.\([0-9]\).*/\1\2/'`
 else