Protecting VC++-specific pragmas with ifdef _MSC_VER to allow

a clean Cygwin build.

svn-id: r3452
This commit is contained in:
Claudio Matsuoka 2001-11-03 06:33:29 +00:00
parent bdd798b163
commit 49c07dc041

View File

@ -17,6 +17,10 @@
*
* Change Log:
* $Log$
* Revision 1.6 2001/11/03 06:33:29 cmatsuoka
* Protecting VC++-specific pragmas with ifdef _MSC_VER to allow
* a clean Cygwin build.
*
* Revision 1.5 2001/10/23 19:51:50 strigeus
* recompile not needed when switching games
* debugger skeleton implemented
@ -39,8 +43,11 @@
#if defined(WIN32)
/* Pragmas are VC++-specific */
#if defined(_MSC_VER)
#pragma warning (disable: 4244)
#pragma warning (disable: 4101)
#endif
#define scumm_stricmp stricmp