summaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2013-01-21 12:06:54 +0100
committerantirez <antirez@gmail.com>2013-01-21 12:06:54 +0100
commitcd892d015d3c870f0fb4e8449cfceeacc1191966 (patch)
tree4913c0e6e745ea57523027cba63e1aba1cf0397c /src/config.h
parente50cdbe461263db87f910ce963c3e6a222c91835 (diff)
downloadredis-cd892d015d3c870f0fb4e8449cfceeacc1191966.tar.gz
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.
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h2
1 files changed, 1 insertions, 1 deletions
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