diff options
author | Marcelo Fernandez <marcelofg55@gmail.com> | 2018-03-25 00:43:51 -0300 |
---|---|---|
committer | Marcelo Fernandez <marcelofg55@gmail.com> | 2018-03-26 17:41:05 -0300 |
commit | ecc1b34cbc2375a57afad822218324d8b88fa721 (patch) | |
tree | 7c3272e5609be259398f9bdf3549b4f9a5b84be3 /platform | |
parent | fd79de01c20168075dbf425831ac44f2b676f275 (diff) |
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") |