diff options
author | unknown <venu@myvenu.com> | 2003-02-20 14:14:37 -0800 |
---|---|---|
committer | unknown <venu@myvenu.com> | 2003-02-20 14:14:37 -0800 |
commit | 20e237e5eb2ff47622d7ad12c4085e5e8e4f843a (patch) | |
tree | 5acab851085621a0ba8465cb1069b4dc1e3377cc /libmysqld/libmysqld.c | |
parent | 6963b121da9f583c962827dba046b97c2ad8c9a0 (diff) | |
download | mariadb-git-20e237e5eb2ff47622d7ad12c4085e5e8e4f843a.tar.gz |
Windows portabilty fixups (last commit caused some errors, so recomitting) - SCRUM
strings/strto.c:
Windows won't compile for a wrong argument passing, expects a charset pointer
sql/filesort.cc:
Remove unused variable
sql/lex.h:
Change POINT->POINT_SYM due to redefination error from windef.h
sql/mysqld.cc:
Fix Embedded Server related code
sql/protocol.cc:
Remove unused variables from Embedded Server
sql/sql_class.h:
Remove silly usage
sql/sql_derived.cc:
Windows won't let you compile for this kind of assignments
sql/sql_help.cc:
Need a cast to make it compile
sql/sql_parse.cc:
Remove unused variables from Embedded server
sql/sql_yacc.yy:
Change POINT->POINT_SYM due to redefination error from windef.h
mysys/mf_keycache.c:
Add a correct cast and remove the unused variables
libmysqld/lib_sql.cc:
Remove unused variable
libmysqld/libmysqld.c:
Port the netware change to remove mysql_once_init to libmysqld
Diffstat (limited to 'libmysqld/libmysqld.c')
-rw-r--r-- | libmysqld/libmysqld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysqld/libmysqld.c b/libmysqld/libmysqld.c index 5a273f690ce..489510f8c41 100644 --- a/libmysqld/libmysqld.c +++ b/libmysqld/libmysqld.c @@ -66,7 +66,7 @@ TYPELIB sql_protocol_typelib = {array_elements(sql_protocol_names_lib)-1,"", #define closesocket(A) close(A) #endif -static void mysql_once_init(void); +void mysql_once_init(void); static void end_server(MYSQL *mysql); static void append_wild(char *to,char *end,const char *wild); static ulong mysql_sub_escape_string(CHARSET_INFO *charset_info, char *to, |