I guess we should be checking to see if we're on linux && we're not on darwin.

This commit is contained in:
Charles Lohr
2005-03-15 20:57:14 +00:00
parent a86e74b606
commit 31e2930ff7
+1 -1
View File
@@ -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)