From cbf3ae0f8fcff2b899d573571b01c6aa2b3188a3 Mon Sep 17 00:00:00 2001 From: Markus Makela Date: Mon, 12 Sep 2016 13:17:38 +0300 Subject: [PATCH] Move gatekeeper and ccrfilter into the core The filters should be a part of the core package. --- server/modules/filter/ccrfilter/CMakeLists.txt | 2 +- server/modules/filter/gatekeeper/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/modules/filter/ccrfilter/CMakeLists.txt b/server/modules/filter/ccrfilter/CMakeLists.txt index b33d25a35..672688725 100644 --- a/server/modules/filter/ccrfilter/CMakeLists.txt +++ b/server/modules/filter/ccrfilter/CMakeLists.txt @@ -1,4 +1,4 @@ add_library(ccrfilter SHARED ccrfilter.c) target_link_libraries(ccrfilter maxscale-common) set_target_properties(ccrfilter PROPERTIES VERSION "1.0.0") -install_module(ccrfilter experimental) +install_module(ccrfilter core) diff --git a/server/modules/filter/gatekeeper/CMakeLists.txt b/server/modules/filter/gatekeeper/CMakeLists.txt index bf23f6b10..c73192886 100644 --- a/server/modules/filter/gatekeeper/CMakeLists.txt +++ b/server/modules/filter/gatekeeper/CMakeLists.txt @@ -1,4 +1,4 @@ add_library(gatekeeper SHARED gatekeeper.c) target_link_libraries(gatekeeper maxscale-common) set_target_properties(gatekeeper PROPERTIES VERSION "1.0.0") -install_module(gatekeeper experimental) +install_module(gatekeeper core)