summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/makeapps.com1
-rw-r--r--crypto/crypto-lib.com1
-rwxr-xr-xmakevms.com10
-rw-r--r--ssl/ssl-lib.com1
-rw-r--r--test/maketests.com1
5 files changed, 12 insertions, 2 deletions
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]"
$!