diff options
author | unknown <monty@donna.mysql.fi> | 2001-04-17 14:02:28 +0300 |
---|---|---|
committer | unknown <monty@donna.mysql.fi> | 2001-04-17 14:02:28 +0300 |
commit | 51c2a1ebb081a9dbe031e6c345ff216f882f1ac4 (patch) | |
tree | 2feb7d4406cc5558be41ea402576222b0ff9e4fc /mysys | |
parent | 8512c526ab768c77f0023c9b4d75949a1727acaf (diff) | |
download | mariadb-git-51c2a1ebb081a9dbe031e6c345ff216f882f1ac4.tar.gz |
Fixed that -ldl is not used for clients
Fixed rpl000001 to handle the most common mysql-test-run ports.
configure.in:
Fixed that -ldl is not used for clients
(The old version breaked when client was compiled staticly)
mysql-test/r/rpl000001.result:
Fix to handle the most common mysql-test-run ports.
mysql-test/t/rpl000001.test:
Fix to handle the most common mysql-test-run ports.
mysys/my_alloc.c:
Extended min block a little to get faster mallocs
scripts/mysql_install_db.sh:
Fixed bug when using RPM and one had --basedir in my.cnf
sql/Makefile.am:
Add -ldl to mysqld link line
strings/ctype-ujis.c:
Remove warnings
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/my_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_alloc.c b/mysys/my_alloc.c index 7bcf92621c5..db482454e69 100644 --- a/mysys/my_alloc.c +++ b/mysys/my_alloc.c @@ -24,7 +24,7 @@ void init_alloc_root(MEM_ROOT *mem_root, uint block_size, uint pre_alloc_size) { mem_root->free=mem_root->used=0; - mem_root->min_malloc=16; + mem_root->min_malloc=32; mem_root->block_size=block_size-MALLOC_OVERHEAD-sizeof(USED_MEM)-8; mem_root->error_handler=0; #if !(defined(HAVE_purify) && defined(EXTRA_DEBUG)) |