diff options
author | Peter Prymmer <PPrymmer@factset.com> | 2001-01-17 05:07:11 -0800 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-01-18 04:13:02 +0000 |
commit | cd30eb946d46c2bd8f712bfbc18547efc438e308 (patch) | |
tree | 4d3d8b0378f5d0b2f6c8fc033d365fad422a641b /configure.com | |
parent | abab3cf816f936cf88071f9f19785f32f738fc85 (diff) | |
download | perl-cd30eb946d46c2bd8f712bfbc18547efc438e308.tar.gz |
Re: subversion undef on VMS (was Re: [ID 20001218.033] Not OK: perl v5.6.1 +v5.6.1-TRIAL1 on VMS_AXP V7.2-1)
Message-ID: <Pine.OSF.4.10.10101171255380.289071-100000@aspara.forte.com>
Replace #8462.
p4raw-id: //depot/perl@8469
Diffstat (limited to 'configure.com')
-rw-r--r-- | configure.com | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/configure.com b/configure.com index 02bf6a889a..76c85cfe34 100644 --- a/configure.com +++ b/configure.com @@ -1224,12 +1224,20 @@ $ line = F$EDIT(line,"COMPRESS, TRIM") $ api_subversion = F$ELEMENT(2," ",line) $ got_api_subversion = "true" $ ENDIF -$ IF (.NOT.got_patch).OR.(.NOT.got_sub) THEN GOTO Patchlevel_h_loop +$ IF (.NOT. got_patch) .OR. - + (.NOT. got_sub) .OR. - + (.NOT. got_api_revision) .OR. - + (.NOT. got_api_version) .OR. - + (.NOT. got_api_subversion) - + THEN GOTO Patchlevel_h_loop $Close_patch: $ CLOSE CONFIG $ ELSE $ patchlevel="0" $ subversion="0" +$ api_revision="0" +$ api_version="0" +$ api_subversion="0" $ ENDIF $ IF (F$STRING(subversion) .NES. "0") $ THEN @@ -4837,8 +4845,11 @@ $ WC "" $ WC "CONFIG='true'" $ WC "Makefile_SH='" + Makefile_SH + "'" $ WC "Mcc='" + Mcc + "'" -$ WC "PERL_SUBVERSION='" + subversion + "'" ! VMS specific to descrip_mms.template -$ WC "PERL_VERSION='" + patchlevel + "'" ! VMS specific to descrip_mms.template +$ WC "PERL_REVISION=" + revision +$ WC "PERL_VERSION=" + patchlevel +$ WC "PERL_SUBVERSION=" + subversion +$ WC "PERL_API_VERSION=" + api_version +$ WC "PERL_API_SUBVERSION=" + api_subversion $ WC "alignbytes='" + alignbytes + "'" $ WC "aphostname='" + "'" $ WC "ar='" + "'" |