[GSOC] Add SDL2 library + additional SDL libraries #92

Open
Ghost wants to merge 8 commits from (deleted):sdl2-kolibri into main
3 changed files with 4 additions and 1 deletions
Showing only changes of commit 20bbcf47f9 - Show all commits

View File

@ -119,4 +119,4 @@
/* Enable the Kolibri filesystem driver (src/filesystem/kolibri/\*.c) */
#define SDL_FILESYSTEM_KOLIBRI 1
#endif /* SDL_config_minimal_h_ */
#endif /* SDL_config_kolibri_h_ */

View File

@ -209,6 +209,7 @@ extern AudioBootStrap VITAAUD_bootstrap;
extern AudioBootStrap N3DSAUDIO_bootstrap;
extern AudioBootStrap EMSCRIPTENAUDIO_bootstrap;
extern AudioBootStrap OS2AUDIO_bootstrap;
extern AudioBootStrap KOLIBRIAUDIO_bootstrap;
#endif /* SDL_sysaudio_h_ */

View File

@ -69,6 +69,8 @@
#define SDL_DYNAMIC_API 0 /* devkitARM doesn't support dynamic linking */
#elif defined(DYNAPI_NEEDS_DLOPEN) && !defined(HAVE_DLOPEN)
#define SDL_DYNAMIC_API 0 /* we need dlopen(), but don't have it.... */
#elif defined(__KOLIBRI__)
#define SDL_DYNAMIC_API 0
#endif
/* everyone else. This is where we turn on the API if nothing forced it off. */