diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2004-12-06 14:43:04 +0000 |
---|---|---|
committer | Gisle Vanem <gvanem@broadpark.no> | 2004-12-06 14:43:04 +0000 |
commit | fe5979cfdba009b356bdffafcb9b46ad0570abf1 (patch) | |
tree | 430792a19620cdedf2a119a6b7fe1866e8987716 /lib/config-win32ce.h | |
parent | a1f7987ad8b9941dd50ce5cb6ca966ca221d3bd5 (diff) | |
download | curl-fe5979cfdba009b356bdffafcb9b46ad0570abf1.tar.gz |
Replace MINGW32 with built-in __MINGW32__.
Diffstat (limited to 'lib/config-win32ce.h')
-rw-r--r-- | lib/config-win32ce.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/config-win32ce.h b/lib/config-win32ce.h index e15b28a71..84c5eb8f6 100644 --- a/lib/config-win32ce.h +++ b/lib/config-win32ce.h @@ -103,7 +103,7 @@ #define HAVE_STRSTR 1 /* Define if you have the strtoll function. */ -#ifdef MINGW32 +#ifdef __MINGW32__ #define HAVE_STRTOLL 1 #endif @@ -228,7 +228,7 @@ * This section is for compiler specific defines.* *************************************************/ /* Borland and MS don't have this */ -#if defined(MINGW32) || defined(__WATCOMC__) || defined(__LCC__) +#if defined(__MINGW32__) || defined(__WATCOMC__) || defined(__LCC__) /* Define if you have the <unistd.h> header file. */ #define HAVE_UNISTD_H 1 |