Hi,
The "no-ec" configuration option is broken in the Windows builds of OpenSSL
0.9.7a
and earlier. The fix is below.
Thanks,
Mark Fontana
Electronics For Imaging
=================================================
*** openssl-0.9.7a/util/mk1mf.pl.orig Thu Feb 13 23:20:28 2003
--- openssl-0.9.7a/util/mk1mf.pl Tue Mar 11 18:24:56 2003
***************
*** 663,668 ****
--- 663,669 ----
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/)
***************
*** 688,693 ****
--- 689,695 ----
@a=grep(!/^e_.*_bf$/,@a) if $no_bf;
@a=grep(!/^e_.*_c$/,@a) if $no_cast;
@a=grep(!/^e_rc4$/,@a) if $no_rc4;
+ @a=grep(!/^e_ec$/,@a) if $no_ec;
@a=grep(!/(^s2_)|(^s23_)/,@a) if $no_ssl2;
@a=grep(!/(^s3_)|(^s23_)/,@a) if $no_ssl3;
______________________________________________________________________
OpenSSL Project http://www.openssl.org
Development Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]