summaryrefslogtreecommitdiff
path: root/databases/redis-devel/files/patch-src-Makefile
diff options
context:
space:
mode:
authorSergey A. Osokin <osa@FreeBSD.org>2013-08-20 17:24:30 +0000
committerSergey A. Osokin <osa@FreeBSD.org>2013-08-20 17:24:30 +0000
commite3ced93adcc3a0eb7873e12c4e072ee00e302267 (patch)
tree4962d5f553f163555d3c4de44f8c1e6917a024ff /databases/redis-devel/files/patch-src-Makefile
parentUpdate to 0.99.03 (diff)
Update from 2.8.0-rc2 to 2.8.0-rc3.
Disable debug flags. <ChangeLog> # UPGRADE URGENCY: HIGH * [FIX] Improved expired keys collection algorithm. Even under heavy load keys to be expired can't accumulate because of lack of CPU time. * [FIX] Replication speed regression fixed (issue #1238). * [FIX] Fixed an hard to trigger PSYNC bug. * [FIX] Fixed Issue #1240, ZUNIONSTORE could lead to wrong result. * [NEW] Add per-db average TTL information in INFO output. * [NEW] redis-benchmark improvements. * [NEW] dict.c API wrong usage detection. </ChangeLog>
Diffstat (limited to '')
-rw-r--r--databases/redis-devel/files/patch-src-Makefile13
1 files changed, 10 insertions, 3 deletions
diff --git a/databases/redis-devel/files/patch-src-Makefile b/databases/redis-devel/files/patch-src-Makefile
index af4557cfdbb0..701d4fab774f 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-08-13 15:32:55.000000000 +0400
-+++ src/Makefile 2013-08-13 15:35:00.000000000 +0400
+--- src/Makefile.orig 2013-07-30 22:20:02.000000000 +0400
++++ src/Makefile 2013-08-13 22:36:30.000000000 +0400
@@ -22,7 +22,7 @@
WARN=-Wall
OPT=$(OPTIMIZATION)
@@ -9,7 +9,14 @@
INSTALL_BIN=$(PREFIX)/bin
INSTALL=install
-@@ -58,8 +58,9 @@
+@@ -52,14 +52,15 @@
+ FINAL_CFLAGS=$(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) $(REDIS_CFLAGS)
+ FINAL_LDFLAGS=$(LDFLAGS) $(REDIS_LDFLAGS) $(DEBUG)
+ FINAL_LIBS=-lm
+-DEBUG=-g -ggdb
++#DEBUG=-g -ggdb
+
+ ifeq ($(uname_S),SunOS)
INSTALL=cp -pf
FINAL_CFLAGS+= -D__EXTENSIONS__ -D_XPG6
FINAL_LIBS+= -ldl -lnsl -lsocket -lpthread