Commit 7d36919f authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

MDEV-33723 Mroonga ignored WITHOUT_DYNAMIC_PLUGINS


Make WITHOUT_DYNAMIC_PLUGINS ignore mrooonga also in its own DIY version
of MYSQL_ADD_PLUGIN
parent a13e521b
...@@ -57,6 +57,11 @@ if(MRN_BUNDLED) ...@@ -57,6 +57,11 @@ if(MRN_BUNDLED)
"${PLUGIN_MROONGA}" STREQUAL "NO") "${PLUGIN_MROONGA}" STREQUAL "NO")
return() return()
endif() endif()
if(WITHOUT_DYNAMIC_PLUGINS)
if(NOT (PLUGIN_MROONGA STREQUAL STATIC))
return()
endif()
endif()
endif() endif()
set(MRN_BUNDLED_GROONGA_RELATIVE_DIR "vendor/groonga") set(MRN_BUNDLED_GROONGA_RELATIVE_DIR "vendor/groonga")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment