From 3911c2386623e1fbd7e985f641c1cee6ac21e067 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 27 Sep 2021 11:09:43 -0700 Subject: [PATCH] Tweak SIMD & ASM option defaults. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index cb583e59..d80194ee 100644 --- a/configure.ac +++ b/configure.ac @@ -255,7 +255,7 @@ __attribute__ ((target("ssse3"))) void more_testing(char* buf, int len) if test x"$enable_simd" = x""; then case "$host_os" in - *linux*) enable_simd=yes ;; + *linux*) ;; *) enable_simd=no ;; esac fi @@ -320,7 +320,7 @@ AC_ARG_ENABLE(asm, if test x"$enable_asm" = x""; then case "$host_os" in - *linux*) enable_asm=yes ;; + *linux*) ;; *) enable_asm=no ;; esac fi -- 2.47.2