]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
cmake: require RocksDB 5.14 or higher 29930/head
authorIlsoo Byun <ilsoobyun@linecorp.com>
Tue, 27 Aug 2019 10:48:52 +0000 (19:48 +0900)
committerIlsoo Byun <ilsoobyun@linecorp.com>
Tue, 29 Oct 2019 09:04:24 +0000 (18:04 +0900)
error: ‘class rocksdb::Env’ has no member named ‘SetAllowNonOwnerAccess’
       opt.env->SetAllowNonOwnerAccess(false);
                    ^~~~~~~~~~~~~~~~~~~~~~

Signed-off-by: Ilsoo Byun <ilsoobyun@linecorp.com>
CMakeLists.txt

index 57e26e7e50fc6575a46371ff9bb2c77191fd77ec..48ff49df83ab3a82fb33d83dc702dde7bf20fe9f 100644 (file)
@@ -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")