From: Andy Polyakov Date: Tue, 24 Jul 2007 14:40:26 +0000 (+0000) Subject: Don't set OPENSSL_IA32_SSE2 on x86_64. X-Git-Tag: OpenSSL_0_9_8f~82 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=341f87862c8979c32bebab58482c40096e1eb21e;p=oweals%2Fopenssl.git Don't set OPENSSL_IA32_SSE2 on x86_64. --- diff --git a/Configure b/Configure index d77fe11d0c..36f927a38d 100755 --- a/Configure +++ b/Configure @@ -1199,7 +1199,7 @@ if ($sha1_obj =~ /\.o$/) $cflags.=" -DSHA1_ASM" if ($sha1_obj =~ /sx86/ || $sha1_obj =~ /sha1/); $cflags.=" -DSHA256_ASM" if ($sha1_obj =~ /sha256/); $cflags.=" -DSHA512_ASM" if ($sha1_obj =~ /sha512/); - if ($sha1_obj =~ /x86/) + if ($sha1_obj =~ /sse2/) { if ($no_sse2) { $sha1_obj =~ s/\S*sse2\S+//; } elsif ($cflags !~ /OPENSSL_IA32_SSE2/)