diff options
author | unknown <joerg@mysql.com> | 2005-03-29 19:25:55 +0200 |
---|---|---|
committer | unknown <joerg@mysql.com> | 2005-03-29 19:25:55 +0200 |
commit | 328781c9590fee9cd29b902ca5157cc845f56ed6 (patch) | |
tree | ce2e38948deeea2f263d6d6a8bda7b7e7964bba2 /acinclude.m4 | |
parent | 1d3e1bdbbe242d0566a9c0b9aa852e0861ef384d (diff) | |
parent | 1a960df7ab2795125165763bb836e8ab1de4c179 (diff) | |
download | mariadb-git-328781c9590fee9cd29b902ca5157cc845f56ed6.tar.gz |
Merge
configure.in:
Auto merged
acinclude.m4:
SCCS merged
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 769f2170256..74426bc2061 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1067,6 +1067,34 @@ AC_MSG_CHECKING(for OpenSSL) ]) +dnl --------------------------------------------------------------------------- +dnl Macro: MYSQL_CHECK_BIG_TABLES +dnl Sets BIG_TABLES if --with-big-tables is used +dnl --------------------------------------------------------------------------- +AC_DEFUN([MYSQL_CHECK_BIG_TABLES], [ + AC_ARG_WITH([big-tables], + [ + --with-big-tables Support tables with more than 4 G rows even on 32 bit platforms], + [bigtables="$withval"], + [bigtables=no]) + AC_MSG_CHECKING([for big tables support]) + + case "$bigtables" in + yes ) + AC_DEFINE([BIG_TABLES], [1], [Support big tables]) + AC_MSG_RESULT([yes]) + ;; + * ) + AC_MSG_RESULT([no]) + ;; + esac + +]) +dnl --------------------------------------------------------------------------- +dnl END OF MYSQL_CHECK_BIG_TABLES SECTION +dnl --------------------------------------------------------------------------- + + AC_DEFUN([MYSQL_CHECK_MYSQLFS], [ AC_ARG_WITH([mysqlfs], [ |