From: Peter Johnson Date: Wed, 1 Aug 2007 04:08:04 +0000 (-0000) Subject: Fix #111: Correctly #define HAVE__STRICMP for vc and vc8. X-Git-Tag: v0.6.2~8^2~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=739b155741a1ec7326f2ef92f5b6fc173e593627;p=yasm Fix #111: Correctly #define HAVE__STRICMP for vc and vc8. Reported by: Brian Gladman svn path=/trunk/yasm/; revision=1904 --- diff --git a/Mkfiles/vc/config.h b/Mkfiles/vc/config.h index d217c544..43a580ee 100644 --- a/Mkfiles/vc/config.h +++ b/Mkfiles/vc/config.h @@ -102,7 +102,7 @@ /* #undef HAVE_VSNPRINTF */ /* Define to 1 if you have the `_stricmp' function. */ -#undef HAVE__STRICMP 1 +#define HAVE__STRICMP 1 /* Name of package */ #define PACKAGE "yasm" diff --git a/Mkfiles/vc8/config.h b/Mkfiles/vc8/config.h index 62f2e7ce..759683d0 100644 --- a/Mkfiles/vc8/config.h +++ b/Mkfiles/vc8/config.h @@ -102,7 +102,7 @@ /* #undef HAVE_VSNPRINTF */ /* Define to 1 if you have the `_stricmp' function. */ -#undef HAVE__STRICMP 1 +#define HAVE__STRICMP 1 /* Name of package */ #define PACKAGE "yasm"