aboutsummaryrefslogtreecommitdiff
path: root/external
diff options
context:
space:
mode:
authorMartijn Otto <git@martijnotto.nl>2019-09-23 16:30:23 +0200
committerMartijn Otto <git@martijnotto.nl>2019-09-23 16:30:23 +0200
commit5bcbd974888b21af3ff46814cccef2071ffc6ceb (patch)
tree74e066f10f2ecb6b777aaa1ff80e1e7a0626ef12 /external
parentMerge pull request #5899 (diff)
downloadmonero-5bcbd974888b21af3ff46814cccef2071ffc6ceb.tar.xz
Disable easylogging crash log on non-glibc libraries
- easylogging assumes certain non-standard headers and functions - these function only exist in glibc - compiling under linux without glibc thus broke compilation
Diffstat (limited to 'external')
-rw-r--r--external/easylogging++/ea_config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/external/easylogging++/ea_config.h b/external/easylogging++/ea_config.h
index 4fb48ce3e..5bc603391 100644
--- a/external/easylogging++/ea_config.h
+++ b/external/easylogging++/ea_config.h
@@ -9,7 +9,7 @@
#define ELPP_UTC_DATETIME
#ifdef EASYLOGGING_CC
-#if !(!defined __GNUC__ || defined __MINGW32__ || defined __MINGW64__ || defined __ANDROID__)
+#if !(!defined __GLIBC__ || !defined __GNUC__ || defined __MINGW32__ || defined __MINGW64__ || defined __ANDROID__)
#define ELPP_FEATURE_CRASH_LOG
#endif
#endif