From: Ilsoo Byun Date: Tue, 27 Aug 2019 10:48:52 +0000 (+0900) Subject: cmake: require RocksDB 5.14 or higher X-Git-Tag: v15.1.0~1117^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F29930%2Fhead;p=ceph.git cmake: require RocksDB 5.14 or higher error: ‘class rocksdb::Env’ has no member named ‘SetAllowNonOwnerAccess’ opt.env->SetAllowNonOwnerAccess(false); ^~~~~~~~~~~~~~~~~~~~~~ Signed-off-by: Ilsoo Byun --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 57e26e7e50fc..48ff49df83ab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -532,7 +532,7 @@ endif() # Rocksdb option(WITH_SYSTEM_ROCKSDB "require and build with system rocksdb" OFF) if (WITH_SYSTEM_ROCKSDB) - find_package(RocksDB 5.8 REQUIRED) + find_package(RocksDB 5.14 REQUIRED) endif() option(WITH_SEASTAR "Build seastar components")