From 739b155741a1ec7326f2ef92f5b6fc173e593627 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Wed, 1 Aug 2007 04:08:04 +0000 Subject: [PATCH] Fix #111: Correctly #define HAVE__STRICMP for vc and vc8. Reported by: Brian Gladman svn path=/trunk/yasm/; revision=1904 --- Mkfiles/vc/config.h | 2 +- Mkfiles/vc8/config.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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" -- 2.40.0