From: Wayne Davison Date: Mon, 27 Sep 2021 18:09:43 +0000 (-0700) Subject: Tweak SIMD & ASM option defaults. X-Git-Tag: v3.2.4pre1~54 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3911c2386623e1fbd7e985f641c1cee6ac21e067;p=thirdparty%2Frsync.git Tweak SIMD & ASM option defaults. --- 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