diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2003-03-15 02:28:55 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2003-03-15 02:28:55 +0100 |
commit | e8e0e3716a1a808a2b68eaac766082e567236483 (patch) | |
tree | 24105b47e2e3f4be173700cb778779065fe72f84 /util | |
parent | Don't give an error if response reason absent in OCSP HTTP. (diff) | |
download | openssl-e8e0e3716a1a808a2b68eaac766082e567236483.tar.xz openssl-e8e0e3716a1a808a2b68eaac766082e567236483.zip |
Fix for no-ec on Windows.
Diffstat (limited to 'util')
-rwxr-xr-x | util/mk1mf.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl index 4e768fa568..d85a20a605 100755 --- a/util/mk1mf.pl +++ b/util/mk1mf.pl @@ -680,6 +680,7 @@ sub var_add return("") if $no_rsa && $dir =~ /^rsaref/; return("") if $no_dsa && $dir =~ /\/dsa/; return("") if $no_dh && $dir =~ /\/dh/; + return("") if $no_ec && $dir =~ /\/ec/; if ($no_des && $dir =~ /\/des/) { if ($val =~ /read_pwd/) |