From: Matt Turner Date: Mon, 22 Sep 2014 05:59:33 +0000 (-0700) Subject: mesa: Unifdef _XBOX. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d20015a576ff1b8c1458264fd896fd2246cd3d1d;p=mesa.git mesa: Unifdef _XBOX. Inexplicably added in commit 36940429. Reviewed-by: Ian Romanick Reviewed-by: Jose Fonseca Reviewed-by: Emil Velikov --- diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index c5a7d63fb51..5809a621d4a 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -518,7 +518,7 @@ _mesa_bsearch( const void *key, const void *base, size_t nmemb, size_t size, char * _mesa_getenv( const char *var ) { -#if defined(_XBOX) || defined(_WIN32_WCE) +#if defined(_WIN32_WCE) return NULL; #else return getenv(var);