diff -rauN faac-1_30/configure.ac faac-1_30-no-sse-patch/configure.ac --- faac-1_30/configure.ac 2019-10-16 12:52:19.000000000 +0200 +++ faac-1_30-no-sse-patch/configure.ac 2022-02-04 09:34:27.670825969 +0100 @@ -34,7 +34,9 @@ fi AM_CONDITIONAL(MINGW, test "$host_os" = "mingw32") -AM_CONDITIONAL(CPUSSE, test "$host_cpu" = "x86_64" || test "$host_cpu" = "i686") +dnl This is just wrong for ISAs before pentium4 and SSE2 +dnl AM_CONDITIONAL(CPUSSE, test "$host_cpu" = "x86_64" || test "$host_cpu" = "i686") +AM_CONDITIONAL(CPUSSE, false) AC_CHECK_TOOL(WINDRES, windres)