mirror of
https://github.com/MariaDB/server.git
synced 2026-04-30 20:25:32 +02:00
Fixed bug in mysqld when using configure --localstatedir
Docs/manual.texi: Changelog
This commit is contained in:
parent
a2e4d0e4dd
commit
335d9fb215
2 changed files with 3 additions and 1 deletions
|
|
@ -46929,6 +46929,8 @@ not yet 100% confident in this code.
|
|||
@appendixsubsec Changes in release 3.23.53
|
||||
@itemize @bullet
|
||||
@item
|
||||
Fixed problem with @code{configure ... --localstatedir=...}.
|
||||
@item
|
||||
Fixed problem with @code{UNSIGNED BIGINT} on AIX (again).
|
||||
@item
|
||||
Fixed bug in pthread_mutex_trylock() on HPUX 11.0
|
||||
|
|
|
|||
|
|
@ -3458,7 +3458,7 @@ static void set_options(void)
|
|||
(void) strmake(default_charset, MYSQL_CHARSET, sizeof(default_charset)-1);
|
||||
(void) strmake(language, LANGUAGE, sizeof(language)-1);
|
||||
(void) strmake(mysql_real_data_home, get_relative_path(DATADIR),
|
||||
sizeof(mysql_real_data_home-1));
|
||||
sizeof(mysql_real_data_home)-1);
|
||||
#ifdef __WIN__
|
||||
/* Allow Win32 users to move MySQL anywhere */
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue