[EMAIL PROTECTED] - Wed Mar 12 08:34:48 2003]:
>
> 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;
>
OK. In my tests only the first bit is needed in 0.9.7. The second chunk
will be needed in 0.9.8, that is when OpenSSL 0.9.8 will even compile
under Windows...
Anyway fix committed.
Steve.
______________________________________________________________________
OpenSSL Project http://www.openssl.org
Development Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]