From 771437151f14233a5e4c09c64f0ece974335c52e Mon Sep 17 00:00:00 2001 From: "Sergey A. Osokin" Date: Tue, 14 Jan 2014 10:28:34 +0000 Subject: Upgrade from 2.8.3 to 2.8.4. # UPGRADE URGENCY: MODERATE for Redis and Sentinel. * [FIX] Makefile compatibility with non common make variants improved. * [FIX] SDIFF crash in very unlikely to trigger state fixed. * [FIX] Config rewriting fixed: don't wipe options unknown to the rewrite process. * [FIX] Set TCP port to 0 works again to disable TCP networking. * [FIX] Fixed replication with old Redis instances as masters by not sending REPLCONF ACK to them. * [FIX] Fix keyspace notifications rewrite and CONFIG GET output. * [FIX] Fix RESTORE TTL handling in 32 bit systems (32 bit overflow). * [NEW] Sentinel now has a run time configuration API. * [NEW] Log when we lost connection with master or slave. * [NEW] When instance is turned from slave to master now inherits the old master replication offset when possible. This improves the Sentinel failover procedure. --- databases/redis-devel/files/patch-src-Makefile | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'databases/redis-devel/files') diff --git a/databases/redis-devel/files/patch-src-Makefile b/databases/redis-devel/files/patch-src-Makefile index 701d4fab774f..8846533cdd23 100644 --- a/databases/redis-devel/files/patch-src-Makefile +++ b/databases/redis-devel/files/patch-src-Makefile @@ -1,5 +1,5 @@ ---- src/Makefile.orig 2013-07-30 22:20:02.000000000 +0400 -+++ src/Makefile 2013-08-13 22:36:30.000000000 +0400 +--- src/Makefile.orig 2014-01-14 14:17:43.000000000 +0400 ++++ src/Makefile 2014-01-14 14:19:31.000000000 +0400 @@ -22,7 +22,7 @@ WARN=-Wall OPT=$(OPTIMIZATION) @@ -9,7 +9,7 @@ INSTALL_BIN=$(PREFIX)/bin INSTALL=install -@@ -52,14 +52,15 @@ +@@ -52,7 +52,7 @@ FINAL_CFLAGS=$(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) $(REDIS_CFLAGS) FINAL_LDFLAGS=$(LDFLAGS) $(REDIS_LDFLAGS) $(DEBUG) FINAL_LIBS=-lm @@ -17,14 +17,15 @@ +#DEBUG=-g -ggdb ifeq ($(uname_S),SunOS) - INSTALL=cp -pf - FINAL_CFLAGS+= -D__EXTENSIONS__ -D_XPG6 - FINAL_LIBS+= -ldl -lnsl -lsocket -lpthread --else ifeq ($(uname_S),Darwin) -- -+else ifeq ($(uname_S),FreeBSD) + # SunOS +@@ -63,6 +63,7 @@ +-ifeq ($(uname_S),Darwin) +- # Darwin (nothing to do) +-else ++ifeq ($(uname_S),FreeBSD) + FINAL_CFLAGS?= $(CFLAGS) $(REDIS_CFLAGS) -I${PREFIX}/include + FINAL_LDFLAGS= $(LDFLAGS) - else ++else + # All the other OSes (notably Linux) FINAL_LDFLAGS+= -rdynamic FINAL_LIBS+= -pthread -- cgit v1.2.3