Skip to content

Commit

Permalink
MDEV-33723 Mroonga ignored WITHOUT_DYNAMIC_PLUGINS
Browse files Browse the repository at this point in the history
Make WITHOUT_DYNAMIC_PLUGINS ignore mrooonga also in its own DIY version
of MYSQL_ADD_PLUGIN
  • Loading branch information
vaintroub committed Mar 19, 2024
1 parent a13e521 commit 7d36919
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions storage/mroonga/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ if(MRN_BUNDLED)
"${PLUGIN_MROONGA}" STREQUAL "NO")
return()
endif()
if(WITHOUT_DYNAMIC_PLUGINS)
if(NOT (PLUGIN_MROONGA STREQUAL STATIC))
return()
endif()
endif()
endif()

set(MRN_BUNDLED_GROONGA_RELATIVE_DIR "vendor/groonga")
Expand Down

0 comments on commit 7d36919

Please sign in to comment.