[ID 20020715.009] perl 5.8.0 RC3 incorrectly tests gcc version on Tru64 UNIX V4.0F
Rainer Orth [Mon, 15 Jul 2002 19:23:54 +0000 (21:23 +0200)]
Message-Id: <5.8.0_22255_1026753561@rimsky>

(also raise the gcc minimum to 2.95.3)

p4raw-id: //depot/perl@17554

hints/dec_osf.sh

index 7c3569f..b3872fa 100644 (file)
@@ -73,12 +73,12 @@ gcc)        if [ "X$gccversion" = "X" ]; then
            # Done too late in Configure if hinted
            gccversion=`$cc --version | sed 's/.*(GCC) *//'`
        fi
-       set $gcc_version
-       if test "$1" -lt 2 -o \( "$1" -eq 2 -a \( "$2" -lt 95 -o \( "$2" -eq 95 -a "$3" -lt 2 \) \) \); then
+       set $gccversion
+       if test "$1" -lt 2 -o \( "$1" -eq 2 -a \( "$2" -lt 95 -o \( "$2" -eq 95 -a "$3" -lt 3 \) \) \); then
            cat >&4 <<EOF
 
-*** Your cc seems to be gcc and its version ($gcc_version) seems to be
-*** less than 2.95.2.  This is not a good idea since old versions of gcc
+*** Your cc seems to be gcc and its version ($gccversion) seems to be
+*** less than 2.95.3.  This is not a good idea since old versions of gcc
 *** are known to produce buggy code when compiling Perl (and no doubt for
 *** other programs, too).
 ***