diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2012-02-24 13:04:14 +0000 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2012-02-24 13:04:14 +0000 |
commit | fd5f4b82242d2ef5246d4258e54de660e086320f (patch) | |
tree | d7e855f9bd6c05aaa491038b55b34a0b22cd3b43 /databases/redis/files/patch-src::config.h | |
parent | - Change boost-libs from BUILD_DEPENDS to LIB_DEPENDS. This fixes installing ... (diff) |
Update from 2.4.7 to 2.4.8.
<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>
Notes
Notes:
svn path=/head/; revision=292174
Diffstat (limited to 'databases/redis/files/patch-src::config.h')
-rw-r--r-- | databases/redis/files/patch-src::config.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/databases/redis/files/patch-src::config.h b/databases/redis/files/patch-src::config.h index d69cd179d65e..ae6f5cb4fde2 100644 --- a/databases/redis/files/patch-src::config.h +++ b/databases/redis/files/patch-src::config.h @@ -1,11 +1,11 @@ ---- src/config.h.orig 2011-11-30 16:28:05.000000000 +0400 -+++ src/config.h 2011-11-30 16:28:19.000000000 +0400 +--- 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__) -+#if defined(__APPLE__) || defined(__linux__) || defined(__FreeBSD__) +-#if defined(__APPLE__) || defined(__linux__) || defined(__sun) ++#if defined(__APPLE__) || defined(__linux__) || defined(__sun) || defined(__FreeBSD__) #define HAVE_BACKTRACE 1 #endif |