bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=96c176d866f1a08d205159edd1ca8a44ab72ef02
commit 96c176d866f1a08d205159edd1ca8a44ab72ef02 Author: Boris Faure <[email protected]> Date: Sat Apr 25 13:03:30 2020 +0000 meson: allow debug-threads to be disabled in debug Reviewed-by: Marcel Hollerbach <[email protected]> Reviewed-by: Stefan Schmidt <[email protected]> Differential Revision: https://phab.enlightenment.org/D11756 --- src/lib/eina/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eina/meson.build b/src/lib/eina/meson.build index 003dc6b3b4..1104ae74c7 100644 --- a/src/lib/eina/meson.build +++ b/src/lib/eina/meson.build @@ -302,7 +302,7 @@ if cc.has_header_symbol(pthread_np_header_file, 'pthread_attr_setaffinity_np', a eina_config.set('EINA_HAVE_PTHREAD_AFFINITY', '1') endif -if debug_threads or get_option('debug-threads') +if debug_threads and get_option('debug-threads') if cc.has_header_symbol('execinfo.h', 'backtrace') eina_config.set('EINA_HAVE_DEBUG_THREADS', '1') endif --
