From: Richard Levitte Date: Mon, 29 Oct 2001 13:05:28 +0000 (+0000) Subject: Addapt VMS scripts to the newer disk layout system ODS-5, which allows more than... X-Git-Tag: OpenSSL_0_9_6c~26^2~73 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=7b5ffd683412b85d9b4195fc24b5966d41b591ae;hp=9b55da73ca195947ed664dbf9f093f05759afdd9 Addapt VMS scripts to the newer disk layout system ODS-5, which allows more than one period and mixed size characters in file names --- diff --git a/apps/makeapps.com b/apps/makeapps.com index d6651433dd..219f571d57 100644 --- a/apps/makeapps.com +++ b/apps/makeapps.com @@ -1113,6 +1113,7 @@ $! $! Save directory information $! $ __HERE = F$PARSE(F$PARSE("A.;",F$ENVIRONMENT("PROCEDURE"))-"A.;","[]A.;") - "A.;" +$ __HERE = F$EDIT(__HERE,"UPCASE") $ __TOP = __HERE - "APPS]" $ __INCLUDE = __TOP + "INCLUDE.OPENSSL]" $! diff --git a/crypto/crypto-lib.com b/crypto/crypto-lib.com index b4d80f77fd..2fdf623fe3 100644 --- a/crypto/crypto-lib.com +++ b/crypto/crypto-lib.com @@ -1453,6 +1453,7 @@ $! $! Save directory information $! $ __HERE = F$PARSE(F$PARSE("A.;",F$ENVIRONMENT("PROCEDURE"))-"A.;","[]A.;") - "A.;" +$ __HERE = F$EDIT(__HERE,"UPCASE") $ __TOP = __HERE - "CRYPTO]" $ __INCLUDE = __TOP + "INCLUDE.OPENSSL]" $! diff --git a/makevms.com b/makevms.com index 638d61b470..49b98b54db 100755 --- a/makevms.com +++ b/makevms.com @@ -249,8 +249,14 @@ $ IF F$SEARCH("[.CRYPTO]OPENSSLCONF_H.IN") .NES. "" $ THEN $ TYPE [.CRYPTO]OPENSSLCONF_H.IN /OUTPUT=H_FILE: $ ELSE -$ WRITE SYS$ERROR "Couldn't find a [.CRYPTO]OPENSSLCONF.H_IN. Exiting!" -$ EXIT 0 +$ ! For ODS-5 +$ IF F$SEARCH("[.CRYPTO]OPENSSLCONF.H.IN") .NES. "" +$ THEN +$ TYPE [.CRYPTO]OPENSSLCONF.H.IN /OUTPUT=H_FILE: +$ ELSE +$ WRITE SYS$ERROR "Couldn't find a [.CRYPTO]OPENSSLCONF.H_IN. Exiting!" +$ EXIT 0 +$ ENDIF $ ENDIF $ ENDIF $ IF ARCH .EQS. "AXP" diff --git a/ssl/ssl-lib.com b/ssl/ssl-lib.com index cc64544d28..313ff2565e 100644 --- a/ssl/ssl-lib.com +++ b/ssl/ssl-lib.com @@ -1174,6 +1174,7 @@ $! $! Save directory information $! $ __HERE = F$PARSE(F$PARSE("A.;",F$ENVIRONMENT("PROCEDURE"))-"A.;","[]A.;") - "A.;" +$ __HERE = F$EDIT(__HERE,"UPCASE") $ __TOP = __HERE - "SSL]" $ __INCLUDE = __TOP + "INCLUDE.OPENSSL]" $! diff --git a/test/maketests.com b/test/maketests.com index 3ef3ba8fa5..e0be3dd43b 100644 --- a/test/maketests.com +++ b/test/maketests.com @@ -1031,6 +1031,7 @@ $! $! Save directory information $! $ __HERE = F$PARSE(F$PARSE("A.;",F$ENVIRONMENT("PROCEDURE"))-"A.;","[]A.;") - "A.;" +$ __HERE = F$EDIT(__HERE,"UPCASE") $ __TOP = __HERE - "TEST]" $ __INCLUDE = __TOP + "INCLUDE.OPENSSL]" $!