From 8089d89a5129d170e5d36c16c3897f252a85d5c2 Mon Sep 17 00:00:00 2001 From: sfan5 Date: Sat, 10 Jan 2015 15:28:25 +0100 Subject: [PATCH] Set default value for ENABLE_REDIS to 0 --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 2a75c68e6..4c71d418d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -295,7 +295,7 @@ endif(ENABLE_LEVELDB) set(USE_REDIS 0) -OPTION(ENABLE_REDIS "Enable redis backend" 1) +OPTION(ENABLE_REDIS "Enable redis backend" 0) if(ENABLE_REDIS) find_library(REDIS_LIBRARY hiredis)