diff options
author | sfan5 <sfan5@live.de> | 2015-01-10 15:28:25 +0100 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2015-01-10 15:28:25 +0100 |
commit | 8089d89a5129d170e5d36c16c3897f252a85d5c2 (patch) | |
tree | 8936672301385d77eb64d06b273f8bdf4b8e8ab9 | |
parent | 30334b6b22ffe2fb8637448bb5d6f961c6c1d53a (diff) | |
download | minetest-8089d89a5129d170e5d36c16c3897f252a85d5c2.tar.gz minetest-8089d89a5129d170e5d36c16c3897f252a85d5c2.tar.bz2 minetest-8089d89a5129d170e5d36c16c3897f252a85d5c2.zip |
Set default value for ENABLE_REDIS to 0
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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) |