LADI
/
spa
1
Fork 0

src/daemon: move the optional drop-ins to conf.avail

These drop-ins are not meant to be enabled by default, so let's move
them to fontconfig style *.conf.avail/ subfolders from which they can
be copied or symlinked to a location that will get merged into the
corresponding configuration file.

Signed-off-by: Niklāvs Koļesņikovs <89q1r14hd@relay.firefox.com>
This commit is contained in:
Niklāvs Koļesņikovs 2023-03-24 22:13:34 +02:00 committed by Wim Taymans
parent 6c0434ec9c
commit 265f7dd09f
10 changed files with 10 additions and 10 deletions

View File

@ -6,6 +6,6 @@ foreach c : conf_files
configure_file(input : '@0@.in'.format(c),
output : c,
configuration : conf_config,
install_dir : pipewire_confdatadir / 'client-rt.conf.d')
install_dir : pipewire_confdatadir / 'client-rt.conf.avail')
endforeach

View File

@ -6,6 +6,6 @@ foreach c : conf_files
configure_file(input : '@0@.in'.format(c),
output : c,
configuration : conf_config,
install_dir : pipewire_confdatadir / 'client.conf.d')
install_dir : pipewire_confdatadir / 'client.conf.avail')
endforeach

View File

@ -86,14 +86,14 @@ configure_file(input : 'pipewire.conf.in',
output : 'pipewire-uninstalled.conf',
configuration : conf_config_uninstalled)
conf_d_files = [
'pipewire.conf.d',
'client.conf.d',
'client-rt.conf.d',
'pipewire-pulse.conf.d',
conf_avail_folders = [
'pipewire.conf.avail',
'client.conf.avail',
'client-rt.conf.avail',
'pipewire-pulse.conf.avail',
]
foreach c : conf_d_files
foreach c : conf_avail_folders
subdir(c)
endforeach

View File

@ -6,6 +6,6 @@ foreach c : conf_files
configure_file(input : '@0@.in'.format(c),
output : c,
configuration : conf_config,
install_dir : pipewire_confdatadir / 'pipewire-pulse.conf.d')
install_dir : pipewire_confdatadir / 'pipewire-pulse.conf.avail')
endforeach

View File

@ -7,6 +7,6 @@ foreach c : conf_files
configure_file(input : '@0@.in'.format(c),
output : c,
configuration : conf_config,
install_dir : pipewire_confdatadir / 'pipewire.conf.d')
install_dir : pipewire_confdatadir / 'pipewire.conf.avail')
endforeach