[Mesa-dev] [RFC PATCH 1/4] mesa: Unifdef _XBOX.

Emil Velikov emil.l.velikov at gmail.com
Tue Sep 23 12:22:19 PDT 2014


While on the topic of interesting platforms, we still have a few DJGPP
cases. Also let's not forget that gallium has its own getenv wrapper :P
I'll send some patches for those in a bit.

The series is
Reviewed-by: Emil Velikov <emil.l.velikov at gmail.com>

-Emil

On 22/09/14 19:22, Matt Turner wrote:
> Inexplicably added in commit 36940429.
> ---
>  src/mesa/main/imports.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c
> index 4afe156..b18603c 100644
> --- a/src/mesa/main/imports.c
> +++ b/src/mesa/main/imports.c
> @@ -532,7 +532,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);
> 



More information about the mesa-dev mailing list