From: Nikos Mavrogiannopoulos Date: Wed, 20 Apr 2011 17:26:08 +0000 (+0200) Subject: No need to check for -maes and -mpclmul with the current AES-NI code. X-Git-Tag: gnutls_2_99_1~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f6a7872bb964bd35105a561c7ef67cf8d3c085b7;p=thirdparty%2Fgnutls.git No need to check for -maes and -mpclmul with the current AES-NI code. --- diff --git a/configure.ac b/configure.ac index 85fa87a4d9..3fb1adc65b 100644 --- a/configure.ac +++ b/configure.ac @@ -79,15 +79,14 @@ hw_accel=none if test "$use_accel" != "no"; then case $host_cpu in i?86 | x86_64 | amd64) - GCC_FLAG_ADD([-maes -mpclmul],[X86]) - - if test "x$X86" = "xyes";then +dnl GCC_FLAG_ADD([-maes -mpclmul],[X86]) +dnl if test "x$X86" = "xyes";then if test "$host_cpu" = "x86_64" -o "$host_cpu" = "amd64";then hw_accel="x86-64" else hw_accel="x86" fi - fi +dnl fi ;; *) ;;