From 0090777f347570cac9c9882f3cabd92b2be323f8 Mon Sep 17 00:00:00 2001 From: John Jones Date: Fri, 9 Nov 2018 14:44:41 -0500 Subject: [PATCH] boost stacktrace does not play well with mac --- src/stacktrace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stacktrace.cpp b/src/stacktrace.cpp index 0e00044..6ccd8cc 100644 --- a/src/stacktrace.cpp +++ b/src/stacktrace.cpp @@ -5,7 +5,7 @@ #include // only include stacktrace stuff if boost >= 1.65 -#if BOOST_VERSION / 100000 >= 1 && ((BOOST_VERSION / 100) % 1000) >= 65 +#if BOOST_VERSION / 100000 >= 1 && ((BOOST_VERSION / 100) % 1000) >= 65 && !defined(__APPLE__) #include #include #include