Support for QNX 7.0 (thanks, Elad!).

Fixes Bugzilla #3686.
This commit is contained in:
Ryan C. Gordon 2017-07-01 17:50:47 -04:00
parent b1fbab50c5
commit 22241ed0b0
11 changed files with 875 additions and 5 deletions

View file

@ -216,7 +216,7 @@ static SDL_INLINE void *get_sdlapi_entry(const char *fname, const char *sym)
return retval;
}
#elif defined(unix) || defined(__unix__) || defined(__APPLE__) || defined(__HAIKU__)
#elif defined(unix) || defined(__unix__) || defined(__APPLE__) || defined(__HAIKU__) || defined(__QNX__)
#include <dlfcn.h>
static SDL_INLINE void *get_sdlapi_entry(const char *fname, const char *sym)
{
@ -302,4 +302,3 @@ SDL_InitDynamicAPI(void)
#endif /* SDL_DYNAMIC_API */
/* vi: set ts=4 sw=4 expandtab: */