diff options
author | unknown <monty@hundin.mysql.fi> | 2001-11-08 00:43:27 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-11-08 00:43:27 +0200 |
commit | 3421cb144cd1a9c92c1aad258c30810c5650ab2e (patch) | |
tree | 4256407712f263667aa29c5ed80583c79a0ac81a /configure.in | |
parent | 46459dff53d5c1b644fa3ee3fec1c003b9ad561e (diff) | |
download | mariadb-git-3421cb144cd1a9c92c1aad258c30810c5650ab2e.tar.gz |
Fix wrong memory allocation in SHOW OPEN TABLES
BUILD/compile-alpha-cxx:
Fix for Alpha ccc
configure.in:
Remove not used libraries
mysql-test/r/innodb.result:
Fix test case
sql/sql_base.cc:
Fix wrong memory allocation in SHOW OPEN TABLES.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index d2f5eee5c23..e4dc902f6e4 100644 --- a/configure.in +++ b/configure.in @@ -2254,7 +2254,8 @@ AC_SUBST(server_scripts) # Some usefull subst AC_SUBST(CC) AC_SUBST(GXX) -AC_SUBST(TOOLS_LIBS) +#Remove TOOLS_LIBS, because this is included in LIBRARIES +#AC_SUBST(TOOLS_LIBS) # Output results AC_OUTPUT(Makefile extra/Makefile mysys/Makefile isam/Makefile \ |