diff options
| author | Juan Linietsky | 2018-04-07 16:40:47 -0300 |
|---|---|---|
| committer | GitHub | 2018-04-07 16:40:47 -0300 |
| commit | 1570a72eee4bc0efb46cc2185c44a12a0aa57943 (patch) | |
| tree | c9ad90a73e85c9974da74784b6884d5fe46d0284 /platform/x11/detect.py | |
| parent | 51f689de3cbe167e117a042f9acb19c0cf4571ae (diff) | |
| parent | ecc1b34cbc2375a57afad822218324d8b88fa721 (diff) | |
| download | godot-1570a72eee4bc0efb46cc2185c44a12a0aa57943.tar.gz godot-1570a72eee4bc0efb46cc2185c44a12a0aa57943.tar.zst godot-1570a72eee4bc0efb46cc2185c44a12a0aa57943.zip | |
Diffstat (limited to 'platform/x11/detect.py')
| -rw-r--r-- | platform/x11/detect.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/x11/detect.py b/platform/x11/detect.py index da2b0701b..5820a926e 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -234,10 +234,10 @@ def configure(env): print("ALSA libraries not found, disabling driver") if env['pulseaudio']: - if (os.system("pkg-config --exists libpulse-simple") == 0): # 0 means found + if (os.system("pkg-config --exists libpulse") == 0): # 0 means found print("Enabling PulseAudio") env.Append(CPPFLAGS=["-DPULSEAUDIO_ENABLED"]) - env.ParseConfig('pkg-config --cflags --libs libpulse-simple') + env.ParseConfig('pkg-config --cflags --libs libpulse') else: print("PulseAudio development libraries not found, disabling driver") |
