build: don't allow "auto" for seatd, builtin, server and examples
These features don't have any dependencies, so "auto" doesn't make sense.
This commit is contained in:
parent
ee40913810
commit
753c5276cf
2 changed files with 16 additions and 11 deletions
|
@ -1,7 +1,7 @@
|
|||
option('logind', type: 'combo', choices: ['auto', 'disabled', 'elogind', 'systemd'], value: 'auto', description: 'logind support')
|
||||
option('seatd', type: 'feature', value: 'enabled', description: 'seatd support')
|
||||
option('builtin', type: 'feature', value: 'disabled', description: 'builtin seatd server')
|
||||
option('server', type: 'feature', value: 'enabled', description: 'seatd server')
|
||||
option('examples', type: 'feature', value: 'disabled', description: 'libseat example programs')
|
||||
option('seatd', type: 'combo', choices: ['enabled', 'disabled'], value: 'enabled', description: 'seatd support')
|
||||
option('builtin', type: 'combo', choices: ['enabled', 'disabled'], value: 'disabled', description: 'builtin seatd server')
|
||||
option('server', type: 'combo', choices: ['enabled', 'disabled'], value: 'enabled', description: 'seatd server')
|
||||
option('examples', type: 'combo', choices: ['enabled', 'disabled'], value: 'disabled', description: 'libseat example programs')
|
||||
option('man-pages', type: 'feature', value: 'auto', description: 'Generate and install man pages')
|
||||
option('defaultpath', type: 'string', value: '', description: 'Default location for seatd socket (empty for default)')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue