From bc28fb74b4edae6753023938dd8147c38c398f82 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 22 Jul 2017 20:04:38 -0400 Subject: [PATCH] Minor QNX fix; don't warn about CD-ROM support (for now). --- src/physfs_platforms.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/physfs_platforms.h b/src/physfs_platforms.h index 6276152a..b7257e30 100644 --- a/src/physfs_platforms.h +++ b/src/physfs_platforms.h @@ -63,6 +63,11 @@ # define PHYSFS_NO_CDROM_SUPPORT 1 # define PHYSFS_PLATFORM_UNIX 1 # define PHYSFS_PLATFORM_POSIX 1 +#elif defined(__QNX__) +# define PHYSFS_NO_CDROM_SUPPORT 1 /* !!! FIXME? */ +# define PHYSFS_PLATFORM_QNX 1 +# define PHYSFS_PLATFORM_UNIX 1 +# define PHYSFS_PLATFORM_POSIX 1 #elif defined(unix) || defined(__unix__) # define PHYSFS_PLATFORM_UNIX 1 # define PHYSFS_PLATFORM_POSIX 1