mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
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:
parent
3fb90523cc
commit
8e7ef0d42c
4 changed files with 8 additions and 8 deletions
6
wscript
6
wscript
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue