diff options
Diffstat (limited to 'extra/faac/faac-1_30-no-sse.patch')
-rw-r--r-- | extra/faac/faac-1_30-no-sse.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/extra/faac/faac-1_30-no-sse.patch b/extra/faac/faac-1_30-no-sse.patch new file mode 100644 index 00000000..30f7f322 --- /dev/null +++ b/extra/faac/faac-1_30-no-sse.patch @@ -0,0 +1,14 @@ +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) + |