summaryrefslogtreecommitdiffstats
path: root/util/mk1mf.pl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-04-04 17:57:34 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-04-04 17:57:34 +0000
commit2dd5ca1fbc15ed7473c8d96e62ed76ea2ab0d891 (patch)
tree76d6917e5d4be49794885f4a56dc8233dc9df9cc /util/mk1mf.pl
parent3042945ac896e5fc72efca9f7db21aa524ead910 (diff)
Make no-ssl2 work including on Win32 builds.
Diffstat (limited to 'util/mk1mf.pl')
-rwxr-xr-xutil/mk1mf.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index 0ed7cb4ac8..6b052fa31c 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -736,8 +736,8 @@ sub var_add
@a=grep(!/^e_camellia$/,@a) if $no_camellia;
@a=grep(!/^e_seed$/,@a) if $no_seed;
- @a=grep(!/(^s2_)|(^s23_)/,@a) if $no_ssl2;
- @a=grep(!/(^s3_)|(^s23_)/,@a) if $no_ssl3;
+ #@a=grep(!/(^s2_)|(^s23_)/,@a) if $no_ssl2;
+ #@a=grep(!/(^s3_)|(^s23_)/,@a) if $no_ssl3;
@a=grep(!/(_sock$)|(_acpt$)|(_conn$)|(^pxy_)/,@a) if $no_sock;