gallium: test for PIPE_OS_LINUX instead of __linux__
authorBrian Paul <brian.paul@tungstengraphics.com>
Wed, 29 Oct 2008 20:08:13 +0000 (14:08 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Wed, 29 Oct 2008 20:08:13 +0000 (14:08 -0600)
src/gallium/auxiliary/rtasm/rtasm_execmem.c

index 19087589a873695fc65e130b34bd3be1d26abdd9..864bd4d3fe23eb4ef9ef15d92194936c03635422 100644 (file)
 #include "rtasm_execmem.h"
 
 
-#if defined(__linux__)
+#if defined(PIPE_OS_LINUX)
+
 
 /*
  * Allocate a large block of memory which can hold code then dole it out
  * in pieces by means of the generic memory manager code.
-*/
+ */
 
 #include <unistd.h>
 #include <sys/mman.h>
@@ -113,7 +114,7 @@ rtasm_exec_free(void *addr)
 }
 
 
-#else
+#else /* PIPE_OS_LINUX */
 
 /*
  * Just use regular memory.
@@ -133,4 +134,4 @@ rtasm_exec_free(void *addr)
 }
 
 
-#endif
+#endif /* PIPE_OS_LINUX */