From: Kefu Chai Date: Tue, 19 Sep 2017 05:36:31 +0000 (+0800) Subject: cmake: requires rockdb version 5.8 X-Git-Tag: v13.0.1~859^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c999abd7a8a8347b0211f368e5472630dfb3540e;p=ceph.git 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 --- 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