]> granicus.if.org Git - openssl/commitdiff
Let's make life easier and have the VMS version of the configuration be
authorRichard Levitte <levitte@openssl.org>
Thu, 13 May 2004 21:38:26 +0000 (21:38 +0000)
committerRichard Levitte <levitte@openssl.org>
Thu, 13 May 2004 21:38:26 +0000 (21:38 +0000)
generated from the Unixly configuration file.

Makefile.org
VMS/VMSify-conf.pl [new file with mode: 0644]

index cfb57569145bf9042be6ab3e1a477f51d28d6eb6..4bc777797a726f91f99b7bbdd7d0988ddeaee57c 100644 (file)
@@ -449,11 +449,14 @@ crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
 crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
        $(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
 
+apps/openssl-vms.cnf: apps/openssl.cnf
+       $(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf
+
 TABLE: Configure
        (echo 'Output of `Configure TABLE'"':"; \
        $(PERL) Configure TABLE) > TABLE
 
-update: depend errors stacks util/libeay.num util/ssleay.num crypto/objects/obj_dat.h TABLE
+update: depend errors stacks util/libeay.num util/ssleay.num crypto/objects/obj_dat.h apps/openssl-vms.cnf TABLE
 
 # Build distribution tar-file. As the list of files returned by "find" is
 # pretty long, on several platforms a "too many arguments" error or similar
diff --git a/VMS/VMSify-conf.pl b/VMS/VMSify-conf.pl
new file mode 100644 (file)
index 0000000..d3be6a2
--- /dev/null
@@ -0,0 +1,34 @@
+#! /usr/bin/perl
+
+use strict;
+use warnings;
+
+my @directory_vars = ( "dir", "certs", "crl_dir", "new_certs_dir" );
+my @file_vars = ( "database", "certificate", "serial", "crlnumber",
+                 "crl", "private_key", "RANDFILE" );
+while(<STDIN>) {
+    chomp;
+    foreach my $d (@directory_vars) {
+       if (/^(\s*\#?\s*${d}\s*=\s*)\.\/([^\s\#]*)([\s\#].*)$/) {
+           $_ = "$1sys\\\$disk:\[.$2$3";
+       } elsif (/^(\s*\#?\s*${d}\s*=\s*)(\w[^\s\#]*)([\s\#].*)$/) {
+           $_ = "$1sys\\\$disk:\[.$2$3";
+       }
+       s/^(\s*\#?\s*${d}\s*=\s*\$\w+)\/([^\s\#]*)([\s\#].*)$/$1.$2\]$3/;
+       while(/^(\s*\#?\s*${d}\s*=\s*(\$\w+\.|sys\\\$disk:\[\.)[\w\.]+)\/([^\]]*)\](.*)$/) {
+           $_ = "$1.$3]$4";
+       }
+    }
+    foreach my $f (@file_vars) {
+       s/^(\s*\#?\s*${f}\s*=\s*)\.\/(.*)$/$1sys\\\$disk:\[\/$2/;
+       while(/^(\s*\#?\s*${f}\s*=\s*(\$\w+|sys\\\$disk:\[)[^\/]*)\/(\w+\/[^\s\#]*)([\s\#].*)$/) {
+           $_ = "$1.$3$4";
+       }
+       if (/^(\s*\#?\s*${f}\s*=\s*(\$\w+|sys\\\$disk:\[)[^\/]*)\/(\w+)([\s\#].*)$/) {
+           $_ = "$1]$3.$4";
+       } elsif  (/^(\s*\#?\s*${f}\s*=\s*(\$\w+|sys\\\$disk:\[)[^\/]*)\/([^\s\#]*)([\s\#].*)$/) {
+           $_ = "$1]$3$4";
+       }
+   }
+    print $_,"\n";
+}