Code

meson_options.txt: add missing default values
authorMax Kellermann <max.kellermann@gmail.com>
Mon, 31 Jul 2017 21:28:18 +0000 (23:28 +0200)
committerMax Kellermann <max.kellermann@gmail.com>
Mon, 31 Jul 2017 21:29:05 +0000 (23:29 +0200)
meson_options.txt

index 752939412ad18b0a792ed5ffccd61e530885bef5..4f58ed3230acea3378114ea8e6ac4a91520025c9 100644 (file)
@@ -14,19 +14,22 @@ option('colors', type: 'combo',
   description: 'Enable color support')
 
 option('multibyte', type: 'boolean',
-  value: 'true',
+  value: true,
   description: 'Enable multibyte character support')
 
 option('locale', type: 'combo',
   choices: ['true', 'false', 'auto'],
+  value: 'auto',
   description: 'Enable locale support')
 
 option('nls', type: 'combo',
   choices: ['true', 'false', 'auto'],
+  value: 'auto',
   description: 'Enable NLS support')
 
 option('lirc', type: 'combo',
   choices: ['true', 'false', 'auto'],
+  value: 'auto',
   description: 'Enable LIRC support')
 
 option('tcp', type: 'boolean',