diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-04-07 16:40:47 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-07 16:40:47 -0300 |
commit | 1570a72eee4bc0efb46cc2185c44a12a0aa57943 (patch) | |
tree | c9ad90a73e85c9974da74784b6884d5fe46d0284 /platform | |
parent | 51f689de3cbe167e117a042f9acb19c0cf4571ae (diff) | |
parent | ecc1b34cbc2375a57afad822218324d8b88fa721 (diff) |
Merge pull request #17742 from marcelofg55/audio_device_list
Added new audio device functions to set/get the audio device
Diffstat (limited to 'platform')
-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 da2b0701b6..5820a926e9 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") |