mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 15:15:34 +02:00
merge 5.2
This commit is contained in:
commit
41d432462b
1622 changed files with 29021 additions and 44282 deletions
|
|
@ -41,7 +41,7 @@ link_sources:
|
|||
ms=`echo $(mysysobjects) | sed "s;\.lo;.c;g"`; \
|
||||
vs=`echo $(vio_objects) | sed "s;\.lo;.c;g"`; \
|
||||
scs=`echo $(sql_cmn_objects) | sed "s;\.lo;.c;g"`; \
|
||||
for f in $$ss; do \
|
||||
for f in $$ss $(mystringsheaders); do \
|
||||
rm -f $$f; \
|
||||
@LN_CP_F@ $(top_srcdir)/strings/$$f $$f; \
|
||||
done; \
|
||||
|
|
|
|||
|
|
@ -51,6 +51,7 @@ mystringsobjects = strmov.lo strxmov.lo strxnmov.lo strnmov.lo \
|
|||
strmov_overlapp.lo
|
||||
|
||||
mystringsextra= strto.c
|
||||
mystringsheaders= strings_def.h
|
||||
dbugobjects = dbug.lo # IT IS IN SAFEMALLOC.C sanity.lo
|
||||
mysysheaders = mysys_priv.h my_static.h
|
||||
vioheaders = vio_priv.h
|
||||
|
|
|
|||
|
|
@ -133,7 +133,7 @@ int STDCALL mysql_server_init(int argc __attribute__((unused)),
|
|||
mysql_port = MYSQL_PORT;
|
||||
#ifndef MSDOS
|
||||
{
|
||||
char *env;
|
||||
char *env;
|
||||
|
||||
/*
|
||||
if builder specifically requested a default port, use that
|
||||
|
|
@ -213,11 +213,19 @@ void STDCALL mysql_server_end()
|
|||
{
|
||||
my_end(0);
|
||||
}
|
||||
#ifdef NOT_NEEDED
|
||||
/*
|
||||
The following is not needed as if the program explicitely called
|
||||
my_init() then we can assume it will also call my_end().
|
||||
The reason to not also do it here is in that case we can't get
|
||||
statistics from my_end() to debug log.
|
||||
*/
|
||||
else
|
||||
{
|
||||
free_charsets();
|
||||
mysql_thread_end();
|
||||
}
|
||||
#endif
|
||||
|
||||
mysql_client_init= org_my_init_done= 0;
|
||||
#ifdef EMBEDDED_SERVER
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue