Proofread. Code. FFS. And save the files before commit, that'll help. Not enough sugar, clearly.
This commit is contained in:
@@ -306,7 +306,7 @@ if test x$enable_cpucheck != xno; then
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int main()
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
char model_name[216], flags[216], cpu_family[216];
|
char model_name[216], flags[216], cpu_family[216];
|
||||||
char vendor_id[216], model[216], *cpu = 0;
|
char vendor_id[216], model[216], *cpu = 0;
|
||||||
@@ -417,7 +417,7 @@ if test x$enable_cpucheck != xno; then
|
|||||||
if (!cpu)
|
if (!cpu)
|
||||||
{
|
{
|
||||||
if (strstr(model_name, "Athlon(tm) 4")) { cpu = "athlon-4"; }
|
if (strstr(model_name, "Athlon(tm) 4")) { cpu = "athlon-4"; }
|
||||||
else { cpu = (strstr(model_name, "Athlon(tm) MP")) ? "athlon-mp" : cpu = "athlon-xp"; }
|
else { cpu = (strstr(model_name, "Athlon(tm) MP")) ? "athlon-mp" : "athlon-xp"; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -124,7 +124,7 @@ else
|
|||||||
|
|
||||||
if test x$release = xyes; then
|
if test x$release = xyes; then
|
||||||
AC_MSG_RESULT(yes)
|
AC_MSG_RESULT(yes)
|
||||||
CFLAGS="$CFLAGS -O3 -fomit-frame-pointer -ffast-math -fprefetch-loop-arrays -fforce-addr -s"
|
CFLAGS="$CFLAGS -O3 -fomit-frame-pointer -fprefetch-loop-arrays -fforce-addr -s"
|
||||||
NFLAGS="$NFLAGS -O99999999"
|
NFLAGS="$NFLAGS -O99999999"
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT(no)
|
AC_MSG_RESULT(no)
|
||||||
|
|||||||
Reference in New Issue
Block a user