diff options
author | unknown <monty@donna.mysql.com> | 2000-10-23 15:35:42 +0300 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2000-10-23 15:35:42 +0300 |
commit | 40879f5d4c167c49e0231c359e2fa97340ffcfd1 (patch) | |
tree | 20b25b09438bf3aad77ad7810faab9651daf310f /configure.in | |
parent | ccc73ca61a97de00a7231316e28fd8d0fb457b30 (diff) | |
download | mariadb-git-40879f5d4c167c49e0231c359e2fa97340ffcfd1.tar.gz |
Fix of automatic repair
Docs/manual.texi:
Update for 3.23.27
configure.in:
Fixed syntax error
include/m_string.h:
bmove() was wrongly defined (old code was probably never executed)
myisam/mi_check.c:
Fix for automatic repair
myisam/myisamchk.c:
Fix for automatic repair
sql/ha_myisam.cc:
Fix for automatic repair
sql/handler.cc:
Fix for automatic repair
sql/mysqlbinlog.cc:
Indentation
sql/sql_insert.cc:
Move incrementation of thread_count to make things safer
sql/sql_parse.cc:
Added a new state for bug tracking
sql/sql_select.cc:
Increment created_tmp_disk_tables for each internal temporary
MyISAM table. Added path to some printf statements.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 48d04852cdf..32041850efc 100644 --- a/configure.in +++ b/configure.in @@ -4,7 +4,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(sql/mysqld.cc) AC_CANONICAL_SYSTEM # The Docs Makefile.am parses this line! -AM_INIT_AUTOMAKE(mysql, 3.23.26-beta) +AM_INIT_AUTOMAKE(mysql, 3.23.27-beta) AM_CONFIG_HEADER(config.h) PROTOCOL_VERSION=10 @@ -1860,11 +1860,11 @@ AC_SUBST(sql_server_dirs) AC_SUBST(thread_dirs) AC_SUBST(server_scripts) -if test "$with_posix_threads" = "no" -o "$with_mit_threads" = "yes" -then +#if test "$with_posix_threads" = "no" -o "$with_mit_threads" = "yes" +#then # MIT pthreads does now support connecting with unix sockets # AC_DEFINE(HAVE_THREADS_WITHOUT_SOCKETS) -fi +#fi # Some usefull subst AC_SUBST(CC) |