Commit 2c53cdfb authored by Felix Paul Kühne's avatar Felix Paul Kühne

* fixed the special case that uname provides 'i386' instead of 'i686' on certain macbooks

parent eec1f613
...@@ -1481,7 +1481,7 @@ if test -n "${with_tuning}"; then ...@@ -1481,7 +1481,7 @@ if test -n "${with_tuning}"; then
CFLAGS_TUNING="-mtune=${with_tuning}" CFLAGS_TUNING="-mtune=${with_tuning}"
fi fi
else else
if test "${SYS}" = "darwin" -a "${host_cpu}" = "i686"; then if test "${SYS}" = "darwin" -a "${host_cpu}" != "powerpc"; then
CFLAGS_TUNING="-march=pentium-m -mtune=prescott" CFLAGS_TUNING="-march=pentium-m -mtune=prescott"
elif test "${host_cpu}" = "i686" -o "${host_cpu}" = "i586" -o "${host_cpu}" = "i486" -o "${host_cpu}" = "i386"; then elif test "${host_cpu}" = "i686" -o "${host_cpu}" = "i586" -o "${host_cpu}" = "i486" -o "${host_cpu}" = "i386"; then
CFLAGS_TUNING="-mtune=pentium2" CFLAGS_TUNING="-mtune=pentium2"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment