From: Zbigniew Jędrzejewski-Szmek Date: Sun, 19 Aug 2018 17:11:30 +0000 (+0200) Subject: meson: rename -Ddebug to -Ddebug-extra X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=0b47dabe18061b76b66fd56e443d0f74313fce39 meson: rename -Ddebug to -Ddebug-extra Meson added -Doptimization and -Ddebug options, which obviously causes a conflict with our -Ddebug options. Let's rename it. Closes #76. --- diff --git a/meson.build b/meson.build index 0d096d847..8b62c789e 100644 --- a/meson.build +++ b/meson.build @@ -895,7 +895,7 @@ enable_debug_mmap_cache = false #if 1 /// additional elogind debug mode enable_debug_elogind = false #endif // 1 -foreach name : get_option('debug') +foreach name : get_option('debug-extra') if name == 'hashmap' enable_debug_hashmap = true elif name == 'mmap-cache' diff --git a/meson_options.txt b/meson_options.txt index 3c3b4cb30..05f80ba1a 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -72,7 +72,7 @@ option('kexec-path', type : 'string', description : 'path to kexec') # description : 'path to debug shell binary') # option('debug-tty', type : 'string', value : '/dev/tty9', # description : 'specify the tty device for debug shell') -# option('debug', type : 'array', choices : ['hashmap', 'mmap-cache'], value : [], +# option('debug-extra', type : 'array', choices : ['hashmap', 'mmap-cache'], value : [], # description : 'enable extra debugging') # option('memory-accounting-default', type : 'boolean', # description : 'enable MemoryAccounting= by default') @@ -80,7 +80,7 @@ option('kexec-path', type : 'string', description : 'path to kexec') option('valgrind', type : 'boolean', value : false, description : 'do extra operations to avoid valgrind warnings') #if 1 /// Add an extra debugging option for elogind -option('debug', type : 'array', choices : ['elogind', 'hashmap', 'mmap-cache'], value : [], +option('debug-extra', type : 'array', choices : ['elogind', 'hashmap', 'mmap-cache'], value : [], description : 'enable extra debugging') #endif // 1