From: Vinson Lee Date: Sat, 23 May 2020 20:46:28 +0000 (-0700) Subject: mesa: Fix NetBSD compiler macro. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c3025bde192919649999da202e7527849bf2038f;p=mesa.git mesa: Fix NetBSD compiler macro. Reported-by: RafaƂ Mikrut Fixes: a63b90712aad ("mesa: also check for __NetBSD__") Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3015 Signed-off-by: Vinson Lee Reviewed-by: Eric Engestrom Part-of: --- diff --git a/src/mapi/u_execmem.c b/src/mapi/u_execmem.c index 89d5c1d08d5..d6e64c08886 100644 --- a/src/mapi/u_execmem.c +++ b/src/mapi/u_execmem.c @@ -46,7 +46,7 @@ static unsigned int head = 0; static unsigned char *exec_mem = (unsigned char *)0; -#if defined(__linux__) || defined(__OpenBSD__) || defined(_NetBSD__) || defined(__sun) || defined(__HAIKU__) +#if defined(__linux__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__sun) || defined(__HAIKU__) #include #include diff --git a/src/mesa/main/execmem.c b/src/mesa/main/execmem.c index b2018b5e767..a3e76c5d0b0 100644 --- a/src/mesa/main/execmem.c +++ b/src/mesa/main/execmem.c @@ -37,7 +37,7 @@ #include "c11/threads.h" -#if defined(__linux__) || defined(__OpenBSD__) || defined(_NetBSD__) || defined(__sun) || defined(__HAIKU__) +#if defined(__linux__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__sun) || defined(__HAIKU__) /* * Allocate a large block of memory which can hold code then dole it out