1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Fix compilation without dlopen

This commit is contained in:
Sergei Golubchik
2018-01-20 11:45:23 +01:00
parent 906ce0962d
commit 204cb85aab
4 changed files with 10 additions and 3 deletions

View File

@ -477,6 +477,11 @@ static st_plugin_dl *plugin_dl_insert_or_reuse(struct st_plugin_dl *plugin_dl)
sizeof(struct st_plugin_dl));
DBUG_RETURN(tmp);
}
#else
static struct st_plugin_dl *plugin_dl_find(const LEX_STRING *)
{
return 0;
}
#endif /* HAVE_DLOPEN */