PulseAudio: use correct casing

This will also change the internal backend name, so it will miss the
previous 'config' setting '<State backend="Pulseaudio" ...'` and the
session file's '<EngineHints backend="Pulseaudio" ...'. But that is no
big deal after upgrading. Especially after the backend has been broken
for some users for a while.
This commit is contained in:
Mads Kiilerich 2022-11-02 12:27:33 +01:00 committed by Robin Gareus
parent 3fb90523cc
commit 8e7ef0d42c
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
4 changed files with 8 additions and 8 deletions

View file

@ -1439,10 +1439,10 @@ int main () { __int128 x = 0; return 0; }
conf.fatal("ALSA Backend is only available on Linux")
if re.search ("linux", sys.platform) is None and conf.env['BUILD_PULSEAUDIO']:
conf.fatal("Pulseaudio Backend is only available on Linux")
conf.fatal("PulseAudio Backend is only available on Linux")
if conf.env['BUILD_PULSEAUDIO'] and not conf.is_defined('HAVE_PULSEAUDIO'):
conf.fatal("Pulseaudio Backend requires libpulse-dev")
conf.fatal("PulseAudio Backend requires libpulse-dev")
set_compiler_flags (conf, Options.options)
@ -1558,7 +1558,7 @@ const char* const ardour_config_info = "\\n\\
write_config_text('ALSA Backend', conf.env['BUILD_ALSABACKEND'])
write_config_text('Dummy backend', conf.env['BUILD_DUMMYBACKEND'])
write_config_text('JACK Backend', conf.env['BUILD_JACKBACKEND'])
write_config_text('Pulseaudio Backend', conf.env['BUILD_PULSEAUDIO'])
write_config_text('PulseAudio Backend', conf.env['BUILD_PULSEAUDIO'])
config_text.write("\\n\\\n")
write_config_text('Buildstack', conf.env['DEPSTACK_REV'])
write_config_text('Mac i386 Architecture', opts.generic)