mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
Fix compile error (different storage class for mysql_temp_dir_list)
when trying to build innodb as plugin. The reason for the error is mismatch in mysql_temp_dir_list declaration between mysqld.h and usage in ha_innodb.cc Add missing MYSQL_PLUGIN_IMPORT to mysql_tmpdir_list (variables exported by the server and used by plugin need it).
This commit is contained in:
parent
60333fbec9
commit
fe0828b3b8
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ extern ulong server_id, concurrency;
|
|||
extern time_t server_start_time, flush_status_time;
|
||||
extern char *opt_mysql_tmpdir, mysql_charsets_dir[];
|
||||
extern int mysql_unpacked_real_data_home_len;
|
||||
extern MY_TMPDIR mysql_tmpdir_list;
|
||||
extern MYSQL_PLUGIN_IMPORT MY_TMPDIR mysql_tmpdir_list;
|
||||
extern const char *first_keyword, *delayed_user, *binary_keyword;
|
||||
extern MYSQL_PLUGIN_IMPORT const char *my_localhost;
|
||||
extern MYSQL_PLUGIN_IMPORT const char **errmesg; /* Error messages */
|
||||
|
|
Loading…
Reference in a new issue