summaryrefslogtreecommitdiff
path: root/platform/x11/detect.py
diff options
context:
space:
mode:
authorpunto- <ariel@godotengine.org>2015-12-20 11:08:04 -0300
committerpunto- <ariel@godotengine.org>2015-12-20 11:08:04 -0300
commit33e5c3181d2b74e83e8f95570502c63178876be1 (patch)
treefd81ebeeaec73c06a05d8fc750eb647c591f1e76 /platform/x11/detect.py
parente54418f904beca666a31ec34fd70b713764429a1 (diff)
parent87dab29f4b71c47cc13e9974dc9462e6109aef96 (diff)
Merge pull request #3101 from Hinsbart/remapping-new
Better gamepad support
Diffstat (limited to 'platform/x11/detect.py')
-rw-r--r--platform/x11/detect.py2
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"):