Make update
[oweals/openssl.git] / util / mk1mf.pl
index 1f8b839e41cbefb38fee9047a2e4fd27a3eb2d7b..8b6b2e668aeb00b63fd6d904d74efb68b2926cfc 100755 (executable)
@@ -63,7 +63,6 @@ and [options] can be one of
        no-asm                                  - No x86 asm
        no-krb5                                 - No KRB5
        no-ec                                   - No EC
-       no-ecdsa                                - No ECDSA
        nasm                                    - Use NASM for x86 asm
        gaswin                                  - Use GNU as with Mingw32
        no-socks                                - No socket code
@@ -228,7 +227,6 @@ $cflags.=" -DOPENSSL_NO_SSL3" if $no_ssl3;
 $cflags.=" -DOPENSSL_NO_ERR"  if $no_err;
 $cflags.=" -DOPENSSL_NO_KRB5" if $no_krb5;
 $cflags.=" -DOPENSSL_NO_EC"   if $no_ec;
-$cflags.=" -DOPENSSL_NO_ECDSA" if $no_ecdsa;
 #$cflags.=" -DRSAref"  if $rsaref ne "";
 
 ## if ($unix)
@@ -887,7 +885,6 @@ sub read_options
        elsif (/^no-sock$/)     { $no_sock=1; }
        elsif (/^no-krb5$/)     { $no_krb5=1; }
        elsif (/^no-ec$/)       { $no_ec=1; }
-       elsif (/^no-ecdsa$/)    { $no_ecdsa=1; }
 
        elsif (/^just-ssl$/)    { $no_rc2=$no_idea=$no_des=$no_bf=$no_cast=1;
                                  $no_md2=$no_sha=$no_mdc2=$no_dsa=$no_dh=1;