diff options
author | Blair Sadewitz <blair.sadewitz.gmail.com> | 2008-07-14 08:15:10 -0600 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-07-14 08:15:10 -0600 |
commit | a63b90712aad81d544eb8931493a6c4a7805f7fb (patch) | |
tree | 3877bc05840bba7195e7cf8a4efee1835cc715e1 /src/mesa/main | |
parent | 62db707a3dd4bf821b189e937fa133009007a2b5 (diff) |
mesa: also check for __NetBSD__
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/execmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/execmem.c b/src/mesa/main/execmem.c index 0719d0051c..f95c31862a 100644 --- a/src/mesa/main/execmem.c +++ b/src/mesa/main/execmem.c @@ -36,7 +36,7 @@ -#if defined(__linux__) || defined(__OpenBSD__) +#if defined(__linux__) || defined(__OpenBSD__) || defined(_NetBSD__) /* * Allocate a large block of memory which can hold code then dole it out |