Update to redis-2.6.5

This commit is contained in:
dcoppa 2012-11-23 08:29:42 +00:00
parent 0ffd576800
commit 12d4749227
6 changed files with 26 additions and 23 deletions

View File

@ -1,7 +1,7 @@
# $OpenBSD: Makefile,v 1.41 2012/11/09 09:52:50 dcoppa Exp $
# $OpenBSD: Makefile,v 1.42 2012/11/23 08:29:42 dcoppa Exp $
COMMENT = persistent key-value database
DISTNAME = redis-2.6.4
DISTNAME = redis-2.6.5
CATEGORIES = databases
HOMEPAGE = http://redis.io/

View File

@ -1,2 +1,2 @@
SHA256 (redis-2.6.4.tar.gz) = 1n2MwG4Fz0xvWhD/WIlBoQ/Lj7jYH2JSS5sZGNBTC4U=
SIZE (redis-2.6.4.tar.gz) = 978759
SHA256 (redis-2.6.5.tar.gz) = VCC3dz1Gpcjjt+Fe9Q6Npi86ifmlWlCRTl2oecqMcUs=
SIZE (redis-2.6.5.tar.gz) = 979986

View File

@ -1,6 +1,6 @@
$OpenBSD: patch-deps_Makefile,v 1.2 2012/11/07 10:13:44 dcoppa Exp $
--- deps/Makefile.orig Tue Nov 6 22:07:51 2012
+++ deps/Makefile Wed Nov 7 10:31:01 2012
$OpenBSD: patch-deps_Makefile,v 1.3 2012/11/23 08:29:42 dcoppa Exp $
--- deps/Makefile.orig Thu Nov 22 17:03:27 2012
+++ deps/Makefile Fri Nov 23 08:59:25 2012
@@ -42,13 +42,11 @@ distclean:
.PHONY: distclean
@ -15,7 +15,12 @@ $OpenBSD: patch-deps_Makefile,v 1.2 2012/11/07 10:13:44 dcoppa Exp $
cd linenoise && $(MAKE)
.PHONY: linenoise
@@ -62,7 +60,6 @@ LUA_CFLAGS+= -O2 -Wall -DLUA_ANSI $(CFLAGS)
@@ -58,11 +56,10 @@ ifeq ($(uname_S),SunOS)
LUA_CFLAGS= -D__C99FEATURES__=1
endif
-LUA_CFLAGS+= -O2 -Wall -DLUA_ANSI $(CFLAGS)
+LUA_CFLAGS+= -Wall -DLUA_ANSI $(CFLAGS)
LUA_LDFLAGS+= $(LDFLAGS)
lua: .make-prerequisites

View File

@ -1,15 +1,14 @@
$OpenBSD: patch-deps_hiredis_Makefile,v 1.2 2012/02/28 11:57:11 dcoppa Exp $
--- deps/hiredis/Makefile.orig Wed Feb 22 14:23:43 2012
+++ deps/hiredis/Makefile Tue Feb 28 12:41:24 2012
$OpenBSD: patch-deps_hiredis_Makefile,v 1.3 2012/11/23 08:29:42 dcoppa Exp $
--- deps/hiredis/Makefile.orig Thu Nov 22 17:03:27 2012
+++ deps/hiredis/Makefile Fri Nov 23 09:19:06 2012
@@ -12,9 +12,9 @@ HIREDIS_MINOR=10
# Fallback to gcc when $CC is not in $PATH.
CC:=$(shell sh -c 'type $(CC) >/dev/null 2>/dev/null && echo $(CC) || echo gcc')
-OPTIMIZATION?=-O3
-WARNINGS=-Wall -W -Wstrict-prototypes -Wwrite-strings
-DEBUG?= -g -ggdb
+# OPTIMIZATION?=-O3
+WARNINGS=-Wstrict-prototypes -Wwrite-strings
WARNINGS=-Wall -W -Wstrict-prototypes -Wwrite-strings
-DEBUG?= -g -ggdb
+# DEBUG?= -g -ggdb
REAL_CFLAGS=$(OPTIMIZATION) -fPIC $(CFLAGS) $(WARNINGS) $(DEBUG) $(ARCH)
REAL_LDFLAGS=$(LDFLAGS) $(ARCH)

View File

@ -1,11 +1,10 @@
$OpenBSD: patch-deps_linenoise_Makefile,v 1.3 2012/10/23 10:41:23 dcoppa Exp $
--- deps/linenoise/Makefile.orig Mon Oct 22 23:27:18 2012
+++ deps/linenoise/Makefile Tue Oct 23 10:30:11 2012
$OpenBSD: patch-deps_linenoise_Makefile,v 1.4 2012/11/23 08:29:42 dcoppa Exp $
--- deps/linenoise/Makefile.orig Thu Nov 22 17:03:27 2012
+++ deps/linenoise/Makefile Fri Nov 23 09:19:38 2012
@@ -1,10 +1,10 @@
STD=
-WARN= -Wall
WARN= -Wall
-OPT= -Os
+WARN=
+OPT=
R_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS)

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-src_redis_c,v 1.15 2012/11/07 10:13:44 dcoppa Exp $
--- src/redis.c.orig Tue Nov 6 22:07:51 2012
+++ src/redis.c Wed Nov 7 10:31:01 2012
@@ -1103,7 +1103,7 @@ void initServerConfig() {
$OpenBSD: patch-src_redis_c,v 1.16 2012/11/23 08:29:42 dcoppa Exp $
--- src/redis.c.orig Thu Nov 22 17:03:27 2012
+++ src/redis.c Fri Nov 23 08:48:05 2012
@@ -1116,7 +1116,7 @@ void initServerConfig() {
server.aof_fd = -1;
server.aof_selected_db = -1; /* Make sure the first time will not match */
server.aof_flush_postponed_start = 0;