aboutsummaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-04-12 19:58:17 +0000
committerBodo Möller <bodo@openssl.org>1999-04-12 19:58:17 +0000
commit5fd4e2b16b26579bc64470e3c8329d390ff861ae (patch)
tree190128c57e7d8297105cf080198dfd42d32976aa /Configure
parentf73e07cf420ddad22b6148d8cbe28daf84ccae2d (diff)
downloadopenssl-5fd4e2b16b26579bc64470e3c8329d390ff861ae.zip
openssl-5fd4e2b16b26579bc64470e3c8329d390ff861ae.tar.gz
openssl-5fd4e2b16b26579bc64470e3c8329d390ff861ae.tar.bz2
Don#t auto-generate crypto/pem/pem.h -- a fixed file is fine for it.
Submitted by: Reviewed by: PR:
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure52
1 files changed, 26 insertions, 26 deletions
diff --git a/Configure b/Configure
index c586740..4d46a97 100755
--- a/Configure
+++ b/Configure
@@ -236,9 +236,9 @@ my %table=(
# Miscellaneous hacks: this is designed to allow environments where the "one
# makefile" option does not auto build all files.
-# The first six fields are the hard coded versions of the stuff generated by
-# ctx_size for pem.h: that is EVP_ENCODE_CTX_SIZE, EVP_MD_SIZE EVP_MD_CTX_SIZE,
-# EVP_CIPHER_SIZE, EVP_CIPHER_CTX_SIZE and EVP_MAX_MD_SIZE respectively.
+## # The first six fields are the hard coded versions of the stuff generated by
+## # ctx_size for pem.h: that is EVP_ENCODE_CTX_SIZE, EVP_MD_SIZE EVP_MD_CTX_SIZE,
+## # EVP_CIPHER_SIZE, EVP_CIPHER_CTX_SIZE and EVP_MAX_MD_SIZE respectively.
# If the seventh field is 1 then auto generate
# crypto/date.h
# Need to add Win16 and others here.
@@ -636,12 +636,12 @@ if(defined $misc_table{$target}) {
$max_md_size, $date_fix) =
split(/\s*:\s*/,$misc_table{$target} . ":", -1);
-#print "EVP_ENCODE_CTX_SIZE $enc_ctx\n";
-#print "EVP_MD_SIZE $md_size\n";
-#print "EVP_MD_CTX_SIZE $md_ctx_size\n";
-#print "EVP_CIPHER_SIZE $cipher_size\n";
-#print "EVP_CIPHER_CTX_SIZE $cipher_ctx_size\n";
-#print "EVP_MAX_MD_SIZE $max_md_size\n";
+## #print "EVP_ENCODE_CTX_SIZE $enc_ctx\n";
+## #print "EVP_MD_SIZE $md_size\n";
+## #print "EVP_MD_CTX_SIZE $md_ctx_size\n";
+## #print "EVP_CIPHER_SIZE $cipher_size\n";
+## #print "EVP_CIPHER_CTX_SIZE $cipher_ctx_size\n";
+## #print "EVP_MAX_MD_SIZE $max_md_size\n";
#printf "Date fix: %s\n", $date_fix ? "Yes" : "No";
# Fix the date
@@ -652,23 +652,23 @@ if($date_fix) {
close(OUT);
}
-open (IN, "crypto/pem/pem.org") || die "Can't open crypto/pem/pem.org";
-open (OUT, ">crypto/pem/pem.h") || die "Can't create crypto/pem/pem.h";
-
-# Now fix up pem.h
-while(<IN>) {
- chop;
- s/^(#define EVP_ENCODE_CTX_SIZE).*$/$1 $enc_ctx/;
- s/^(#define EVP_MD_SIZE).*$/$1 $md_size/;
- s/^(#define EVP_MD_CTX_SIZE).*$/$1 $md_ctx_size/;
- s/^(#define EVP_CIPHER_SIZE).*$/$1 $cipher_size/;
- s/^(#define EVP_CIPHER_CTX_SIZE).*$/$1 $cipher_ctx_size/;
- s/^(#define EVP_MAX_MD_SIZE).*$/$1 $max_md_size/;
- print OUT "$_\n";
-}
-
-close (IN);
-close (OUT);
+## open (IN, "crypto/pem/pem.org") || die "Can't open crypto/pem/pem.org";
+## open (OUT, ">crypto/pem/pem.h") || die "Can't create crypto/pem/pem.h";
+##
+## # Now fix up pem.h
+## while(<IN>) {
+## chop;
+## s/^(#define EVP_ENCODE_CTX_SIZE).*$/$1 $enc_ctx/;
+## s/^(#define EVP_MD_SIZE).*$/$1 $md_size/;
+## s/^(#define EVP_MD_CTX_SIZE).*$/$1 $md_ctx_size/;
+## s/^(#define EVP_CIPHER_SIZE).*$/$1 $cipher_size/;
+## s/^(#define EVP_CIPHER_CTX_SIZE).*$/$1 $cipher_ctx_size/;
+## s/^(#define EVP_MAX_MD_SIZE).*$/$1 $max_md_size/;
+## print OUT "$_\n";
+## }
+##
+## close (IN);
+## close (OUT);
}