From 8f86a596fa9d3c33cd2a6e43208c1625ab634c70 Mon Sep 17 00:00:00 2001 From: Markus Makela Date: Mon, 5 Dec 2016 23:37:33 +0200 Subject: [PATCH] Add missing linkage to NullAuthAllow The module did not link against the MySQLCommon library. --- server/modules/authenticator/NullAuthAllow/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/modules/authenticator/NullAuthAllow/CMakeLists.txt b/server/modules/authenticator/NullAuthAllow/CMakeLists.txt index 2f11fb0f2..23be1cb3e 100644 --- a/server/modules/authenticator/NullAuthAllow/CMakeLists.txt +++ b/server/modules/authenticator/NullAuthAllow/CMakeLists.txt @@ -1,4 +1,4 @@ add_library(NullAuthAllow SHARED null_auth_allow.c) -target_link_libraries(NullAuthAllow maxscale-common) +target_link_libraries(NullAuthAllow maxscale-common MySQLCommon) set_target_properties(NullAuthAllow PROPERTIES VERSION "1.0.0") install_module(NullAuthAllow core)