From cc47ec25ca84db3bc9b4bf22d2146fa74add5478 Mon Sep 17 00:00:00 2001 From: Zakir Durumeric Date: Sat, 17 Aug 2013 00:30:57 -0400 Subject: [PATCH] fixing makefile to not require ssldb for building redis --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index f602975..72eb0d5 100644 --- a/src/Makefile +++ b/src/Makefile @@ -39,7 +39,7 @@ objects=constraint.o blacklist.o cyclic.o logger.o send.o recv.o state.o monitor ifeq ($(REDIS), true) LDLIBS+=-lhiredis - objects+=module_redis.o redis.o module_ssldb.o + objects+=module_redis.o redis.o CFLAGS+=-DREDIS endif