Use -dumpversion to obtain gcc's version.
authorLutz Jänicke <jaenicke@openssl.org>
Sun, 16 Jun 2002 10:32:14 +0000 (10:32 +0000)
committerLutz Jänicke <jaenicke@openssl.org>
Sun, 16 Jun 2002 10:32:14 +0000 (10:32 +0000)
Submitted by: ross.alexander@uk.neceur.com, allenh@eecs.berkeley.edu
Reviewed by:
PR: 96

config

diff --git a/config b/config
index 9780c01df6f7a1303c81c459a53ca69482ab7547..4f7b41877fec143bd8e5b07f3a52b2d54f2c649e 100755 (executable)
--- a/config
+++ b/config
@@ -381,13 +381,12 @@ done
 
 # 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 | head -1`
+GCCVER=`(gcc -dumpversion) 2>/dev/null`
 if [ "$GCCVER" != "" ]; then
   CC=gcc
-  # 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 ()---]*//'`
+  # Since gcc 3.1 gcc --version behaviour has changed.  gcc -dumpversion
+  # does give us what we want though, so we use that.  We just just the
+  # major and minor version numbers.
   # 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