diff options
author | Ariel Manzur <ariel@godotengine.org> | 2015-12-21 09:17:15 -0300 |
---|---|---|
committer | Ariel Manzur <ariel@godotengine.org> | 2015-12-21 09:17:15 -0300 |
commit | 0576e1e28f41f103cd06452d810a04265e3574cc (patch) | |
tree | 817c1a5e3ca8b8f786e013c0322e4052e7f85d59 /platform/x11/detect.py | |
parent | 72a6b137ba256f5198843f8980107c350d52e5ca (diff) | |
parent | 15429d6ac95acb044c9eebd64356f33e7e5d14ef (diff) | |
download | redot-engine-0576e1e28f41f103cd06452d810a04265e3574cc.tar.gz |
Merge branch 'master' of https://github.com/godotengine/godot
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"): |