Parse version numbers prefixed with text (egcs does that, even with
authorRichard Levitte <levitte@openssl.org>
Fri, 9 Aug 2002 07:32:38 +0000 (07:32 +0000)
committerRichard Levitte <levitte@openssl.org>
Fri, 9 Aug 2002 07:32:38 +0000 (07:32 +0000)
-dumpversion).
PR: 203, part 1

config

diff --git a/config b/config
index 5f4ed18f0ecac69f92f0d7489bb1e72f2a4eec6e..40ad0fe6cf48ecaf091f5fae37cc70edd4d73ca7 100755 (executable)
--- a/config
+++ b/config
@@ -384,6 +384,9 @@ done
 GCCVER=`(gcc -dumpversion) 2>/dev/null`
 if [ "$GCCVER" != "" ]; then
   CC=gcc
+  # then strip off whatever prefix egcs 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.