diff options
author | Blair Sadewitz <blair.sadewitz.gmail.com> | 2008-07-14 08:16:46 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-07-14 08:16:46 -0600 |
commit | 2f5cd68797ee4a159fa0a5fc4d315e4d3f2f644e (patch) | |
tree | 637b87786e7fa5861bb7e10db20a3acfbd51d62e /src/mesa/main | |
parent | 64979d618a24e8378d95944d5f1d1b5847880a48 (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 aa40b022051..0fe85af93e0 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 |