diff options
| author | skidau <skidau@gmail.com> | 2015-07-03 10:28:08 +1000 |
|---|---|---|
| committer | skidau <skidau@gmail.com> | 2015-07-03 10:28:08 +1000 |
| commit | 8a50dc857bbfc86c41706a6f48770a6f78285628 (patch) | |
| tree | 3c7ac1088404678a1608fa0ff3ddea8b79c5ef1f /Source/Core/InputCommon/ControllerInterface/ControllerInterface.h | |
| parent | 6a33f174de618dc698ceba02e792cc6b2dba9732 (diff) | |
| parent | 77183899e0526a343b8429cf04a1c07b31aafc34 (diff) | |
Merge pull request #2681 from phire/evdev-stable
Linux: Add an evdev based controller backend, to replace SDL.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/ControllerInterface.h')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/ControllerInterface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h index 408a36fefa..3aca18e95c 100644 --- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h +++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h @@ -35,6 +35,9 @@ #if defined(HAVE_SDL) && HAVE_SDL #define CIFACE_USE_SDL #endif +#if defined(HAVE_LIBEVDEV) && defined(HAVE_LIBUDEV) + #define CIFACE_USE_EVDEV +#endif // // ControllerInterface |
