diff options
author | Jose Fonseca <[email protected]> | 2015-06-09 14:43:21 +0100 |
---|---|---|
committer | Jose Fonseca <[email protected]> | 2015-06-09 16:18:16 +0100 |
commit | 65bd4159b35c7213e0ac27c6299495e08a105ab4 (patch) | |
tree | 6649fd5c00e08bbfe1d387c68b593eeb6ebd257c /src/gallium/auxiliary/rtasm | |
parent | 698c391521561a1f0e4ff2570e35417be9968eaa (diff) |
rtasm: Generalize executable memory allocator to all Unices.
We're only using fairly portable standard Unix calls here, so might as
well save ourselves future trouble by enabling on all Unices by default.
https://bugs.freedesktop.org/show_bug.cgi?id=90904
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/rtasm')
-rw-r--r-- | src/gallium/auxiliary/rtasm/rtasm_execmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/rtasm/rtasm_execmem.c b/src/gallium/auxiliary/rtasm/rtasm_execmem.c index 8c3dbefd109..f7e605e9563 100644 --- a/src/gallium/auxiliary/rtasm/rtasm_execmem.c +++ b/src/gallium/auxiliary/rtasm/rtasm_execmem.c @@ -49,7 +49,7 @@ #include <windows.h> #endif -#if defined(PIPE_OS_LINUX) || defined(PIPE_OS_BSD) || defined(PIPE_OS_SOLARIS) || defined(PIPE_OS_HAIKU) || defined(PIPE_OS_CYGWIN) +#if defined(PIPE_OS_UNIX) /* |