From 5ccaa17971c27089cdc22086d72c358a8560c02b Mon Sep 17 00:00:00 2001 From: Dennis Schridde Date: Sat, 10 Nov 2007 12:10:54 +0000 Subject: [PATCH] Correct WZ_CC_TINYC check. (Note the namechange!) git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@2775 4a71c877-e1ca-e34f-864e-861f7616d084 --- lib/framework/wzglobal.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/framework/wzglobal.h b/lib/framework/wzglobal.h index b9ba91adf..8779e4fd9 100644 --- a/lib/framework/wzglobal.h +++ b/lib/framework/wzglobal.h @@ -175,7 +175,7 @@ MSVC - Microsoft Visual C/C++, Intel C++ for Windows GNU - GNU C++ INTEL - Intel C++ for Linux, Intel C++ for Windows - TINYCC - Fabrice Bellard's Tiny C Compiler + TINYC - Fabrice Bellard's Tiny C Compiler Should be sorted most to least authoritative. */ @@ -208,8 +208,8 @@ # define WZ_CC_INTEL # endif -#elif defined(__TINYCC__) -# define WZ_CC_TINYCC +#elif defined(__TINYC__) +# define WZ_CC_TINYC #else # error "Warzone has not been tested on this compiler. Please contact warzone-dev@gna.org"