diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-03-17 11:37:44 +0000 |
---|---|---|
committer | Charles Bailey <bailey@genetics.upenn.edu> | 1996-03-17 11:37:44 +0000 |
commit | 6a6d91dccb584bbee729c8e0a68697fa2c2007fe (patch) | |
tree | 0610d613172359b0bb2937596e21093dc71b3fa9 /vms/myconfig.com | |
parent | 2ac23b19f47f5589df680454cc2ebf2f4313eab8 (diff) | |
download | perl-6a6d91dccb584bbee729c8e0a68697fa2c2007fe.tar.gz |
perl 5.002_01: vms/myconfig.com
Update to include SUBVERSION and d_sigaction (undef for now; if
Kenneth's signal patch doesn't obsolete this, we'll patch it
to recognize sigvec() as well).
Diffstat (limited to 'vms/myconfig.com')
-rw-r--r-- | vms/myconfig.com | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/vms/myconfig.com b/vms/myconfig.com index 923fbc5a3d..7fb728eb62 100644 --- a/vms/myconfig.com +++ b/vms/myconfig.com @@ -124,7 +124,13 @@ $ if f$locate("PATCHLEVEL",line).ne.f$length(line) $ then $ line = f$edit(line,"TRIM,COMPRESS") $ $PATCHLEVEL = f$element(2," ",line) -$ goto patchlevel_h_Done +$ if f$type($SUBVERSION).nes."" then goto patchlevel_h_Done +$ endif +$ if f$locate("SUBVERSION",line).ne.f$length(line) +$ then +$ line = f$edit(line,"TRIM,COMPRESS") +$ $SUBVERSION = f$element(2," ",line) +$ if f$type($PATCHLEVEL).nes."" then goto patchlevel_h_Done $ endif $ goto read_patchlevel_h @@ -291,11 +297,11 @@ $ endif $spit_it_out: $! $spitshell = ECHO !<<!GROK!THIS! $ ECHO " " -$ ECHO "Summary of my ''$package' (patchlevel ''$PATCHLEVEL') configuration:" +$ ECHO "Summary of my ''$package' (patchlevel ''$PATCHLEVEL' subversion ''$SUBVERSION') configuration:" $ ECHO " Platform:" $ ECHO " osname=''$osname', osver=''$osvers', archname=''$archname'" $ ECHO " uname=''$myuname'" !->d_has_uname? -$ ECHO " hint=''$hint'" !->hintfile? +$ ECHO " hint=''$hint' d_sigaction='undef'" !->hintfile? $ ECHO " static exts=''$staticexts'" ! added for VMS $ ECHO " Compiler:" $ ECHO " cc=''$cc', optimize=''$optimize', ld=''$ld'" |