Skip to content

Commit

Permalink
An attempt to make this more Unix-friendly.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Aug 2, 2012
1 parent e70c684 commit e38b5e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/physfs_platforms.h
Expand Up @@ -43,11 +43,11 @@
# define PHYSFS_PLATFORM_SOLARIS 1
# define PHYSFS_PLATFORM_UNIX 1
# define PHYSFS_PLATFORM_POSIX 1
#elif defined(BSD)
#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__bsdi__) || defined(__DragonFly__)
# define PHYSFS_PLATFORM_BSD 1
# define PHYSFS_PLATFORM_UNIX 1
# define PHYSFS_PLATFORM_POSIX 1
#elif defined(unix)
#elif defined(unix) || defined(__unix__)
# define PHYSFS_PLATFORM_UNIX 1
# define PHYSFS_PLATFORM_POSIX 1
#else
Expand Down

0 comments on commit e38b5e9

Please sign in to comment.