Recognize Apple's MacOS X as a Unix system (this sets the flag "unix" to "true" when ruuning under MacOS X).

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@2175 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
pmoura 2008-03-31 19:51:07 +00:00
parent ff59818068
commit 407b94d5b6

View File

@ -2643,10 +2643,14 @@ p_unix(void)
#else #else
#ifdef __unix__ #ifdef __unix__
return TRUE; return TRUE;
#else
#ifdef __APPLE__
return TRUE;
#else #else
return FALSE; return FALSE;
#endif #endif
#endif #endif
#endif
} }
static Int static Int