Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-08-09 11:32:31 +0400
committerRichard Levitte <levitte@openssl.org>2002-08-09 11:32:31 +0400
commit1d2a3fe246f8feb581e5fba1caf192f4fba4906f (patch)
tree4cacf2bac40998436edc8e350375392081bd9221 /config
parent00c8546d214c11572c32fa6fa5136697f8bffd73 (diff)
Parse version numbers prefixed with text (egcs does that, even with
-dumpversion). PR: 203, part 1
Diffstat (limited to 'config')
-rwxr-xr-xconfig3
1 files changed, 3 insertions, 0 deletions
diff --git a/config b/config
index 972cdb70a3..3e9af7680a 100755
--- a/config
+++ b/config
@@ -393,6 +393,9 @@ exit 0
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.