From: michal Date: Thu, 16 Aug 2007 18:42:28 +0000 (+0100) Subject: Define __WIN32__. X-Git-Tag: android-x86-1.6~16^2~1465^2~390^2~4278 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=bef9b40c3904fdffea6cc426c5c82ed3ab70a902;p=android-x86%2Fexternal-mesa.git Define __WIN32__. --- diff --git a/src/mesa/pipe/p_compiler.h b/src/mesa/pipe/p_compiler.h index 51a78bf4f5f..4f968404eb9 100644 --- a/src/mesa/pipe/p_compiler.h +++ b/src/mesa/pipe/p_compiler.h @@ -33,6 +33,12 @@ #include #include + +#if defined(_WIN32) && !defined(__WIN32__) +#define __WIN32__ +#endif + + typedef unsigned int uint; typedef unsigned char ubyte; typedef unsigned char boolean;