diff options
author | unknown <joerg@mysql.com> | 2005-03-29 16:34:33 +0200 |
---|---|---|
committer | unknown <joerg@mysql.com> | 2005-03-29 16:34:33 +0200 |
commit | 34cebb7176b9aa8f30aa31766b9b1b3d26767b14 (patch) | |
tree | 53f89da9d83ef33f065d918c56fd8c09936dea36 /configure.in | |
parent | 606ee28d2a34159295a5f587d306f684fb68e27b (diff) | |
download | mariadb-git-34cebb7176b9aa8f30aa31766b9b1b3d26767b14.tar.gz |
Introduce "configure" support for a new '-with-big-tables' option that can replace
the current way of passing '-DBIG_TABLES' to the compilers.
This is needed even in 4.0, as 'Do-compile-all' must use this new approach for
all "max" builds in 4.0, 4.1, and up.
acinclude.m4:
Provide a new macro 'MYSQL_CHECK_BIG_TABLES' to check a '-with-big-tables' option
and set the CPP symbol 'BIG_TABLES' accordingly.
configure.in:
Call the new 'MYSQL_CHECK_BIG_TABLES' macro.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 36473de7ad1..dbde72b8d4e 100644 --- a/configure.in +++ b/configure.in @@ -2482,6 +2482,7 @@ EOF AC_MSG_RESULT([default: $default_charset; compiled in: $CHARSETS]) +MYSQL_CHECK_BIG_TABLES MYSQL_CHECK_ISAM MYSQL_CHECK_BDB MYSQL_CHECK_INNODB |