diff options
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/meson_options.txt b/meson_options.txt index 8aac9850..c57ba6ec 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,31 +1,31 @@ -option('disable-verbose-mode', - type: 'boolean', value: true, - description: 'disable marco\'s ability to do verbose logging, for embedded/size-sensitive custom builds') - -option('disable-sm', +option('verbose-mode', type: 'boolean', value: false, - description: 'disable marco\'s session management support, for embedded/size-sensitive custom non-MATE builds') + description: 'verbose logging, for embedded/size-sensitive custom builds') -option('disable-startup-notification', - type: 'boolean', value: false, - description: 'disable marco\'s startup notification support, for embedded/size-sensitive custom non-MATE builds') +option('sm', + type: 'boolean', value: true, + description: 'session management support, for embedded/size-sensitive custom non-MATE builds') -option('disable-compositor', - type: 'boolean', value: false, - description: 'disable marco\'s compositing manager') +option('startup-notification', + type: 'boolean', value: true, + description: 'startup notification support, for embedded/size-sensitive custom non-MATE builds') -option('disable-xsync', - type: 'boolean', value: false, - description: 'disable marco\'s use of the XSync extension') +option('compositor', + type: 'boolean', value: true, + description: 'compositing manager') -option('disable-render', - type: 'boolean', value: false, - description: 'disable marco\'s use of the RENDER extension') +option('xsync', + type: 'boolean', value: true, + description: 'use of the XSync extension') -option('disable-shape', - type: 'boolean', value: false, - description: 'disable marco\'s use of the shaped window extension') +option('render', + type: 'boolean', value: true, + description: 'use the RENDER extension') -option('disable-xinerama', - type: 'boolean', value: false, - description: 'disable marco\'s use of the Xinerama extension') +option('shape', + type: 'boolean', value: true, + description: 'use the shaped window extension') + +option('xinerama', + type: 'boolean', value: true, + description: 'use the Xinerama extension') |