diff options
author | joerg@mysql.com <> | 2005-03-29 19:25:55 +0200 |
---|---|---|
committer | joerg@mysql.com <> | 2005-03-29 19:25:55 +0200 |
commit | 1ad3d339f562f43fe2f5a17690b7b9c3fc5338ab (patch) | |
tree | ce2e38948deeea2f263d6d6a8bda7b7e7964bba2 /acinclude.m4 | |
parent | e2d973bda0ad4964f4d1ed2e8e855839bbfdcdb9 (diff) | |
parent | 4951842842002324e76c60d4046ed976a1328ff4 (diff) | |
download | mariadb-git-1ad3d339f562f43fe2f5a17690b7b9c3fc5338ab.tar.gz |
Merge
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], [ |