config.h.win32(.in): Update for strcasecmp
authorChun-wei Fan <fanchunwei@src.gnome.org>
Thu, 6 Oct 2011 07:02:54 +0000 (15:02 +0800)
committerChun-wei Fan <fanchunwei@src.gnome.org>
Thu, 6 Oct 2011 07:03:30 +0000 (15:03 +0800)
Visual C++ uses _stricmp, which is identical to strcasecmp on gcc.

config.h.win32.in

index ec43d28..3b74b43 100644 (file)
 /* #undef HAVE_STPCPY */
 
 /* Define to 1 if you have the `strcasecmp' function. */
-#if !defined(_MSC_VER) && !defined(__DMC__)
+#if defined(_MSC_VER)
+#define strcasecmp _stricmp
+#endif /* _MSC_VER uses _stricmp, which is identical to strcasecmp */
+
+#if !defined(__DMC__)
 #define HAVE_STRCASECMP 1
-#else /* _MSC_VER or __DMC__ */
-/* #undef HAVE_STRCASECMP */
-#endif /* _MSC_VER or __DMC__ */
+#endif /* _MSC_VER or __gcc__ */
 
 /* Define to 1 if you have the `strerror' function. */
 #define HAVE_STRERROR 1