Fix enabling SDL_DYNAMIC_API in OpenWatcom builds

This commit is contained in:
Cameron Cawley 2022-05-19 16:58:11 +01:00 committed by Ozkan Sezer
parent 3d52d04977
commit f0566702c5
3 changed files with 2 additions and 4 deletions

View file

@ -61,8 +61,6 @@
#define SDL_DYNAMIC_API 0 /* vitasdk doesn't support dynamic linking */
#elif defined(__NGAGE__)
#define SDL_DYNAMIC_API 0 /* The N-Gage doesn't support dynamic linking either */
#elif defined(__OS2__) || defined(__WATCOMC__)
#define SDL_DYNAMIC_API 0 /* see github bugs #5667 and #5669 */
#elif defined(DYNAPI_NEEDS_DLOPEN) && !defined(HAVE_DLOPEN)
#define SDL_DYNAMIC_API 0 /* we need dlopen(), but don't have it.... */
#endif