diff options
author | Tobias Nygren <[email protected]> | 2015-04-17 20:27:55 +0200 |
---|---|---|
committer | Matt Turner <[email protected]> | 2015-04-17 12:04:48 -0700 |
commit | cfab4ea9c654819c96272a62d7b1664e9038fe91 (patch) | |
tree | 322be9dda2d033cfdc3e82adc6e735210568f9ad /src/mesa/x86 | |
parent | 52e4e4712f0da7e7e1d1164d9487f2d38f80c441 (diff) |
adjust a couple of ifdefs to handle NetBSD correctly
Acked-by: Matt Turner <[email protected]>
Signed-off-by: Tobias Nygren <[email protected]>
Diffstat (limited to 'src/mesa/x86')
-rw-r--r-- | src/mesa/x86/common_x86.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/x86/common_x86.c b/src/mesa/x86/common_x86.c index 86fbca91e6e..1c8640514ab 100644 --- a/src/mesa/x86/common_x86.c +++ b/src/mesa/x86/common_x86.c @@ -42,7 +42,7 @@ #include <sys/types.h> #include <sys/sysctl.h> #endif -#if defined(USE_SSE_ASM) && defined(__OpenBSD__) +#if defined(USE_SSE_ASM) && (defined(__OpenBSD__) || defined(__NetBSD__)) #include <sys/param.h> #include <sys/sysctl.h> #include <machine/cpu.h> |