Check for alternate __unix__ predef.

This commit is contained in:
Ryan C. Gordon 2012-08-02 03:04:43 -04:00
parent c188729b12
commit 781f5bf419
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@
# endif
#elif defined(macintosh)
# error Classic Mac OS support was dropped from PhysicsFS 2.0. Move to OS X.
#elif defined(unix)
#elif defined(unix) || defined(__unix__)
# define PHYSFS_PLATFORM_UNIX
# define PHYSFS_PLATFORM_POSIX
#else