From cd892d015d3c870f0fb4e8449cfceeacc1191966 Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 21 Jan 2013 12:06:54 +0100 Subject: [PATCH] Not every __sun has backtrace(). I don't know how to test for Open Solaris that has support for backtrace() so for now removing the #ifdef that breaks compilation under other Solaris flavors. --- src/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.h b/src/config.h index 472f10a3a..68e99b427 100644 --- a/src/config.h +++ b/src/config.h @@ -56,7 +56,7 @@ #endif /* Test for backtrace() */ -#if defined(__APPLE__) || defined(__linux__) || defined(__sun) +#if defined(__APPLE__) || defined(__linux__) #define HAVE_BACKTRACE 1 #endif