merge with feedback-plugin
and disable feedback plugin by default, if it's compiled in.
This commit is contained in:
commit
4170093ab5
@ -19,6 +19,9 @@ MYSQL_PLUGIN_STATIC(feedback, [libfeedback.la])
|
||||
|
||||
])
|
||||
|
||||
dnl MariaDB before 5.5 needs this define:
|
||||
MYSQL_PLUGIN_DEFINE(feedback, [WITH_FEEDBACK_PLUGIN])
|
||||
|
||||
MYSQL_PLUGIN_ACTIONS(feedback, [
|
||||
AC_CHECK_HEADERS([netdb.h sys/utsname.h])
|
||||
])
|
||||
|
@ -3345,6 +3345,10 @@ static int test_plugin_options(MEM_ROOT *tmp_root, struct st_plugin_int *tmp,
|
||||
if (!my_strcasecmp(&my_charset_latin1, tmp->name.str, "ndbcluster"))
|
||||
plugin_load_policy= PLUGIN_OFF;
|
||||
#endif
|
||||
#ifdef WITH_FEEDBACK_PLUGIN
|
||||
if (!my_strcasecmp(&my_charset_latin1, tmp->name.str, "feedback"))
|
||||
plugin_load_policy= PLUGIN_OFF;
|
||||
#endif
|
||||
|
||||
for (opt= tmp->plugin->system_vars; opt && *opt; opt++)
|
||||
count+= 2; /* --{plugin}-{optname} and --plugin-{plugin}-{optname} */
|
||||
|
Loading…
x
Reference in New Issue
Block a user