* clutter/win32/clutter-backend-win32.c (check_vblank_env): Use

g_ascii_strcasecmp instead of strcasecmp because strcasecmp isn't
	available in MSVC.
This commit is contained in:
Neil Roberts 2008-06-30 16:08:45 +00:00
parent 7d59aa3da0
commit abbcf0ee4b
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2008-06-30 Neil Roberts <neil@o-hand.com>
* clutter/win32/clutter-backend-win32.c (check_vblank_env): Use
g_ascii_strcasecmp instead of strcasecmp because strcasecmp isn't
available in MSVC.
2008-06-30 Matthew Allum <mallum@openedhand.com>
Bug 1007 - Fix TFP fallback mechanism

View File

@ -155,7 +155,7 @@ clutter_backend_win32_constructor (GType gtype,
static gboolean
check_vblank_env (const char *name)
{
return clutter_vblank_name && !strcasecmp (clutter_vblank_name, name);
return clutter_vblank_name && !g_ascii_strcasecmp (clutter_vblank_name, name);
}
ClutterFeatureFlags