Add SDL2 to feature list

This commit is contained in:
Higor Eurípedes 2014-08-10 19:13:49 -03:00
parent 4c084b885d
commit c36ddae9aa
2 changed files with 7 additions and 0 deletions

View File

@ -14,6 +14,12 @@ static const bool _sdl_supp = true;
static const bool _sdl_supp = false;
#endif
#ifdef HAVE_SDL2
static const bool _sdl2_supp = true;
#else
static const bool _sdl2_supp = false;
#endif
#ifdef HAVE_THREADS
static const bool _thread_supp = true;
#else

View File

@ -823,6 +823,7 @@ static void print_features(void)
puts("");
puts("Features:");
_PSUPP(sdl, "SDL", "SDL drivers");
_PSUPP(sdl2, "SDL2", "SDL2 drivers");
_PSUPP(x11, "X11", "X11 drivers");
_PSUPP(wayland, "wayland", "Wayland drivers");
_PSUPP(thread, "Threads", "Threading support");