From 03067b586c675c67abc11ce488b48a86af9da716 Mon Sep 17 00:00:00 2001 From: Johan Wikman Date: Mon, 30 Jan 2017 13:09:06 +0200 Subject: [PATCH] Cache: Install storage implementations as well As the cache is marked as being core, the storage modules needs to be marked as core as well. --- .../filter/cache/storage/storage_inmemory/CMakeLists.txt | 2 +- .../modules/filter/cache/storage/storage_rocksdb/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/modules/filter/cache/storage/storage_inmemory/CMakeLists.txt b/server/modules/filter/cache/storage/storage_inmemory/CMakeLists.txt index 93a39ea58..7fe39fa11 100644 --- a/server/modules/filter/cache/storage/storage_inmemory/CMakeLists.txt +++ b/server/modules/filter/cache/storage/storage_inmemory/CMakeLists.txt @@ -7,4 +7,4 @@ add_library(storage_inmemory SHARED target_link_libraries(storage_inmemory cache maxscale-common) set_target_properties(storage_inmemory PROPERTIES VERSION "1.0.0") set_target_properties(storage_inmemory PROPERTIES LINK_FLAGS -Wl,-z,defs) -install_module(storage_inmemory experimental) +install_module(storage_inmemory core) diff --git a/server/modules/filter/cache/storage/storage_rocksdb/CMakeLists.txt b/server/modules/filter/cache/storage/storage_rocksdb/CMakeLists.txt index b406d2b20..3d76a018d 100644 --- a/server/modules/filter/cache/storage/storage_rocksdb/CMakeLists.txt +++ b/server/modules/filter/cache/storage/storage_rocksdb/CMakeLists.txt @@ -20,7 +20,7 @@ if (ROCKSDB_BUILT) target_link_libraries(storage_rocksdb maxscale-common ${JANSSON_LIBRARIES} ${ROCKSDB_LIB} ${ROCKSDB_LINK_LIBS}) set_target_properties(storage_rocksdb PROPERTIES VERSION "1.0.0") set_target_properties(storage_rocksdb PROPERTIES LINK_FLAGS -Wl,-z,defs) - install_module(storage_rocksdb experimental) + install_module(storage_rocksdb core) else() message("RocksDB not built, storage_rocksdb cannot be built.") endif()