boost stacktrace does not play well with mac

This commit is contained in:
John Jones 2018-11-09 14:44:41 -05:00
parent 9cce60c917
commit 0090777f34

View file

@ -5,7 +5,7 @@
#include <boost/version.hpp>
// 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 <signal.h>
#include <fc/log/logger.hpp>
#include <boost/stacktrace.hpp>