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:
parent
ff59818068
commit
407b94d5b6
@ -2643,10 +2643,14 @@ p_unix(void)
|
||||
#else
|
||||
#ifdef __unix__
|
||||
return TRUE;
|
||||
#else
|
||||
#ifdef __APPLE__
|
||||
return TRUE;
|
||||
#else
|
||||
return FALSE;
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
static Int
|
||||
|
Reference in New Issue
Block a user