In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/0d31fad995d87b1f6f2e8f72ec702722d27f497e?hp=822e6f87f8ae528661f480d9358c11b81f8d5487>
- Log ----------------------------------------------------------------- commit 0d31fad995d87b1f6f2e8f72ec702722d27f497e Author: Craig A. Berry <craigbe...@mac.com> Date: Thu Nov 3 08:15:47 2016 -0500 Compiler choice clean-up in configure.com. VAXC has not been a possibility for a good long while, and the versions of the DEC/Compaq/HP/VSI C compiler that report themselves as "DEC" in a listing file are 15 years or more out-of-date and can be safely desupported. ----------------------------------------------------------------------- Summary of changes: configure.com | 33 +++++---------------------------- 1 file changed, 5 insertions(+), 28 deletions(-) diff --git a/configure.com b/configure.com index 37b57ef..088cabc 100644 --- a/configure.com +++ b/configure.com @@ -1331,35 +1331,12 @@ $! $ GOSUB List_Parse $ IF .NOT.silent THEN echo "" $ echo "Default ""cc"" is ''line' ''archsufx' ''F$GETSYI("VERSION")'" -$ IF F$LOCATE("VAX",line).NE.F$LENGTH(line) +$ IF (F$LOCATE("VSI",line).NE.F$LENGTH(line)) - + .or.(F$LOCATE("HP",F$EDIT(line,"UPCASE")).NE.F$LENGTH(line)) - + .or.(F$LOCATE("Compaq",line).NE.F$LENGTH(line)) $ THEN -$ IF .NOT.silent -$ THEN -$ echo "Will try cc/decc..." -$ ENDIF -$ SET NOON -$ DEFINE/USER_MODE SYS$ERROR NL: -$ DEFINE/USER_MODE SYS$OUTPUT NL: -$ cc/decc/NoObj/list=ccvms.lis ccvms.c -$ tmp = $status -$ SET ON -$ IF (silent) THEN GOSUB Shut_up -$ IF tmp.NE.%X10B90001 -$ THEN -$ echo "Apparently you don't have that one." -$ ELSE -$ GOSUB List_parse -$ echo "You also have: ''line' ''archsufx' ''F$GETSYI("VERSION")'" -$ vms_cc_available = vms_cc_available + "cc/decc " -$ ENDIF -$ ELSE -$ IF (F$LOCATE("DEC",line).NE.F$LENGTH(line)).or.(F$LOCATE("Compaq",line).NE.F$LENGTH(line)) - - .or.(F$LOCATE("HP",F$EDIT(line,"UPCASE")).NE.F$LENGTH(line)) - - .or.(F$LOCATE("VSI",F$EDIT(line,"UPCASE")).NE.F$LENGTH(line)) -$ THEN -$ vms_cc_dflt = "/decc" -$ vms_cc_available = vms_cc_available + "cc/decc " -$ ENDIF +$ vms_cc_dflt = "/decc" +$ vms_cc_available = vms_cc_available + "cc/decc " $ ENDIF $! $Gcc_initial_check: -- Perl5 Master Repository