From c999abd7a8a8347b0211f368e5472630dfb3540e Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Tue, 19 Sep 2017 13:36:31 +0800 Subject: [PATCH] cmake: requires rockdb version 5.8 we've updated the rockdb wrapper on ceph side to be compatible with the latest version of rocksdb upstream. so ceph is not compatible with older version of rocksdb. Signed-off-by: Kefu Chai --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ddbbca4606d..b76c557ebba 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -531,7 +531,7 @@ endif() # Rocksdb option(WITH_SYSTEM_ROCKSDB "require and build with system rocksdb" OFF) if (WITH_SYSTEM_ROCKSDB) - find_package(rocksdb REQUIRED) + find_package(rocksdb 5.8 REQUIRED) endif() # Boost