From 89635047785320c4876f902703aee82d88c3d490 Mon Sep 17 00:00:00 2001 From: Themaister Date: Sun, 8 Dec 2013 16:07:14 +0100 Subject: [PATCH] Log udev feature. --- config.features.h | 6 ++++++ retroarch.c | 1 + 2 files changed, 7 insertions(+) diff --git a/config.features.h b/config.features.h index dbad8369b2..c45672a37b 100644 --- a/config.features.h +++ b/config.features.h @@ -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 diff --git a/retroarch.c b/retroarch.c index 8342625e4d..c965af2c9f 100644 --- a/retroarch.c +++ b/retroarch.c @@ -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");