diff options
author | hondres <hinsbart@users.noreply.github.com> | 2015-12-18 06:12:53 +0100 |
---|---|---|
committer | hondres <hinsbart@users.noreply.github.com> | 2015-12-18 06:12:53 +0100 |
commit | af633c794179d29a4bf0c01983c8b08d14553596 (patch) | |
tree | 073a5a6bcec985cb55f21e34e65dfba00353ba9f /platform/x11/detect.py | |
parent | 19267f30d91fe3554435cae66cc80eddeb93b119 (diff) |
Better gamepad support
Diffstat (limited to 'platform/x11/detect.py')
-rw-r--r-- | platform/x11/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/x11/detect.py b/platform/x11/detect.py index 0f6e640b03..a4b8f835e8 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -150,7 +150,7 @@ def configure(env): env.Append(CPPFLAGS=['-DOPENGL_ENABLED','-DGLEW_ENABLED']) if platform.system() == 'Linux': env.Append(CPPFLAGS=["-DALSA_ENABLED"]) - env.Append(LIBS=['asound']) + env.Append(LIBS=['asound', 'evdev', 'udev']) if (env["pulseaudio"]=="yes"): if not os.system("pkg-config --exists libpulse-simple"): |