From: José Fonseca Date: Mon, 23 Jun 2008 17:35:50 +0000 (+0900) Subject: mesa: No getenv on WinCE. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ab7ad60d47fdd6fbbbbdb8968676083356e8692d;p=mesa.git mesa: No getenv on WinCE. --- diff --git a/src/mesa/glapi/glapi.c b/src/mesa/glapi/glapi.c index ed59ddb0b73..c236656d9a6 100644 --- a/src/mesa/glapi/glapi.c +++ b/src/mesa/glapi/glapi.c @@ -82,6 +82,7 @@ _glapi_set_warning_func( _glapi_warning_func func ) static GLboolean warn(void) { +#if !defined(_WIN32_WCE) if ((WarnFlag || getenv("MESA_DEBUG") || getenv("LIBGL_DEBUG")) && warning_func) { return GL_TRUE; @@ -89,6 +90,9 @@ warn(void) else { return GL_FALSE; } +#else + return GL_FALSE; +#endif }