From 31e2930ff7bd8eba7b2a0f8923833506fcbd84aa Mon Sep 17 00:00:00 2001 From: Charles Lohr Date: Tue, 15 Mar 2005 20:57:14 +0000 Subject: [PATCH] I guess we should be checking to see if we're on linux && we're not on darwin. --- stepmania/src/arch/arch_platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/arch/arch_platform.h b/stepmania/src/arch/arch_platform.h index a1443db033..3691b9cd33 100644 --- a/stepmania/src/arch/arch_platform.h +++ b/stepmania/src/arch/arch_platform.h @@ -3,7 +3,7 @@ // In here, you define which APIs are guaranteed to be available on which OSes. // Don't ever actually #include anything here -- that's for */Selector_*.h. -#if defined(UNIX) || !defined(DARWIN) // Darwin isn't POSIX enough for us. +#if defined(UNIX) && !defined(DARWIN) // Darwin isn't POSIX enough for us. #define HAVE_POSIX // (is Darwin POSIX at all?) #endif #if defined(DARWIN)