1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 12:15:49 +00:00

Log udev feature.

This commit is contained in:
Themaister 2013-12-08 16:07:14 +01:00
parent d21046ace8
commit 8963504778
2 changed files with 7 additions and 0 deletions

View File

@ -32,6 +32,12 @@ static const bool _kms_supp = true;
static const bool _kms_supp = false;
#endif
#ifdef HAVE_UDEV
static const bool _udev_supp = true;
#else
static const bool _udev_supp = false;
#endif
#ifdef HAVE_VG
static const bool _vg_supp = true;
#else

View File

@ -626,6 +626,7 @@ static void print_features(void)
_PSUPP(thread, "Threads", "Threading support");
_PSUPP(opengl, "OpenGL", "OpenGL driver");
_PSUPP(kms, "KMS", "KMS/EGL context support");
_PSUPP(udev, "UDEV", "UDEV/EVDEV input driver support");
_PSUPP(egl, "EGL", "EGL context support");
_PSUPP(vg, "OpenVG", "OpenVG output support");
_PSUPP(xvideo, "XVideo", "XVideo output");