mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
Fix compilation problems on Windows and SUN Solaris.
include/m_string.h: Fix declaration of C-structure for Visual Studio and Sun C-compiler. server-tools/instance-manager/IMService.cpp: Fixed. server-tools/instance-manager/Makefile.am: Removed gcc-specific flags. server-tools/instance-manager/commands.cc: Moved m_string.h to the header. server-tools/instance-manager/commands.h: Replaced forward declaration of LEX_STRING because it is not understood by all compilers. server-tools/instance-manager/instance_map.cc: 1. Moved m_string.h to the header. 2. Use (const char *) to point to const C-string. server-tools/instance-manager/instance_map.h: Replaced forward declaration of LEX_STRING because it is not understood by all compilers. server-tools/instance-manager/instance_options.h: Fixed headers. server-tools/instance-manager/mysqlmanager.cc: Fixed headers. server-tools/instance-manager/user_management_commands.cc: Removed unused variables. server-tools/instance-manager/user_map.cc: Fixed headers.
This commit is contained in:
parent
401d3a0708
commit
ac3806046b
11 changed files with 19 additions and 19 deletions
|
|
@ -18,6 +18,7 @@
|
|||
|
||||
#include <my_global.h>
|
||||
#include <my_sys.h>
|
||||
#include <m_string.h>
|
||||
#include <hash.h>
|
||||
|
||||
#include "command.h"
|
||||
|
|
@ -28,7 +29,6 @@
|
|||
#pragma interface
|
||||
#endif
|
||||
|
||||
struct LEX_STRING;
|
||||
|
||||
/*
|
||||
Print all instances of this instance manager.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue