Mon, 03 Sep 2018 23:35:23 -0500
meson git has reserved the option named 'debug' (yep...) so change our option's name
| meson.build | file | annotate | diff | comparison | revisions | |
| meson_options.txt | file | annotate | diff | comparison | revisions |
--- a/meson.build Tue Sep 04 04:15:33 2018 +0000 +++ b/meson.build Mon Sep 03 23:35:23 2018 -0500 @@ -1097,7 +1097,7 @@ endif endif -enable_debug = get_option('debug') +enable_debug = get_option('console-logging') conf.set('DEBUG', enable_debug) # So that config.h may be found.
--- a/meson_options.txt Tue Sep 04 04:15:33 2018 +0000 +++ b/meson_options.txt Mon Sep 03 23:35:23 2018 -0500 @@ -106,5 +106,5 @@ option('pixmaps-install', type : 'boolean', value : true, description : 'enable installation of pixmap files - Pidgin still needs them!') -option('debug', type : 'boolean', value : false, - description : 'compile with debugging support') +option('console-logging', type : 'boolean', value : false, + description : 'compile with console logging support')