mirror of
https://git.freebsd.org/ports.git
synced 2025-06-14 01:00:33 -04:00
<ChangeLog> UPGRADE URGENCY: moderate if you don't experience any of the fixed problems. * [BUGFIX] Make install now uses cp -f to avoid 'text file busy' errors. * [BUGFIX] redis-check-aof is now large files safe also on 32 bit systems. * [BUGFIX] Issue #327 fixed: maxmemory and replication now work much better. * [BUGFIX] Now HINCRBY can detect overflows too. Fix for issue #330. * [BUGFIX] Fixed compilation with latest clang. * [BUGFIX] Fixed handling of empty sorted sets produced in RDB by very old Redis versions (1.2.x). </ChangeLog>
11 lines
355 B
C
11 lines
355 B
C
--- src/config.h.orig 2012-02-24 16:56:36.000000000 +0400
|
|
+++ src/config.h 2012-02-24 16:57:01.000000000 +0400
|
|
@@ -25,7 +25,7 @@
|
|
#endif
|
|
|
|
/* Test for backtrace() */
|
|
-#if defined(__APPLE__) || defined(__linux__) || defined(__sun)
|
|
+#if defined(__APPLE__) || defined(__linux__) || defined(__sun) || defined(__FreeBSD__)
|
|
#define HAVE_BACKTRACE 1
|
|
#endif
|
|
|