diff options
author | Boris Faure <billiob@gmail.com> | 2020-04-25 13:03:30 +0000 |
---|---|---|
committer | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2020-04-28 14:41:38 +0200 |
commit | 96c176d866f1a08d205159edd1ca8a44ab72ef02 (patch) | |
tree | e936c1faf219f17e8a66b5600d06bf2a9bb43c51 /src/lib/eina/meson.build | |
parent | 55c2ffbe42c0547b1fba5d9cccc1bf4303ff0302 (diff) |
meson: allow debug-threads to be disabled in debug
Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Reviewed-by: Stefan Schmidt <stefan@datenfreihafen.org>
Differential Revision: https://phab.enlightenment.org/D11756
Diffstat (limited to '')
-rw-r--r-- | src/lib/eina/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
302 | eina_config.set('EINA_HAVE_PTHREAD_AFFINITY', '1') | 302 | eina_config.set('EINA_HAVE_PTHREAD_AFFINITY', '1') |
303 | endif | 303 | endif |
304 | 304 | ||
305 | if debug_threads or get_option('debug-threads') | 305 | if debug_threads and get_option('debug-threads') |
306 | if cc.has_header_symbol('execinfo.h', 'backtrace') | 306 | if cc.has_header_symbol('execinfo.h', 'backtrace') |
307 | eina_config.set('EINA_HAVE_DEBUG_THREADS', '1') | 307 | eina_config.set('EINA_HAVE_DEBUG_THREADS', '1') |
308 | endif | 308 | endif |