diff options
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 52 |
1 files changed, 26 insertions, 26 deletions
@@ -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); } |