From fc549f53868243e1cb42cf0fe5d32914a4735155 Mon Sep 17 00:00:00 2001 From: n-a-c-h <> Date: Wed, 26 Oct 2005 05:51:59 +0000 Subject: [PATCH] Updated detection for Celeron M. --- zsnes/src/acinclude.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsnes/src/acinclude.m4 b/zsnes/src/acinclude.m4 index 30e09c4b..ef733e08 100644 --- a/zsnes/src/acinclude.m4 +++ b/zsnes/src/acinclude.m4 @@ -458,7 +458,7 @@ if test x$enable_cpucheck != xno; then if (!cpu) { - if (strstr(model_name, "Pentium(R) M")) + if (strstr(model_name, "Pentium(R) M") || strstr(model_name, "Celeron(R) M")) { #if __GNUC__ > 3 || __GNUC_MINOR__ > 3 cpu = "pentium-m";