mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
25 lines
998 B
Meson
25 lines
998 B
Meson
option('system_user',
|
|
type : 'string', value : 'pulse',
|
|
description : 'User for running the PulseAudio daemon as a system-wide instance (pulse)')
|
|
option('system_group',
|
|
type : 'string', value : 'pulse',
|
|
description : 'Group for running the PulseAudio daemon as a system-wide instance (pulse)')
|
|
option('access_group',
|
|
type : 'string', value : 'pulse-access',
|
|
description : 'Group which is allowed access to a system-wide PulseAudio daemon (pulse-access)')
|
|
option('database',
|
|
type : 'combo', value : 'tdb',
|
|
choices : [ 'gdbm', 'tdb', 'simple' ],
|
|
description : 'Database backend')
|
|
option('pulsedspdir',
|
|
type : 'string',
|
|
description : 'Specify location where OSS wrapper will be installed')
|
|
|
|
# Optional features
|
|
|
|
option('dbus',
|
|
type : 'feature', value : 'auto',
|
|
description : 'Optional D-Bus support')
|
|
option('x11',
|
|
type : 'feature', value : 'auto',
|
|
description : 'Optional X11 support')
|