diff options
author | brian@avenger.(none) <> | 2004-08-13 16:27:17 -0700 |
---|---|---|
committer | brian@avenger.(none) <> | 2004-08-13 16:27:17 -0700 |
commit | b7b48d6764a06af97feb536f114825988da25f8a (patch) | |
tree | 9620e1e05dda7035c2036a5b0c7f7c89faacb947 /acinclude.m4 | |
parent | 68f193f97d1e65dfe10e18d0a7b44988926e5f13 (diff) | |
parent | 1bb0c2ac93c98b0d170c2af7325bd3ca14f1b4c3 (diff) | |
download | mariadb-git-b7b48d6764a06af97feb536f114825988da25f8a.tar.gz |
Merge baker@bk-internal.mysql.com:/home/bk/mysql-4.1
into avenger.(none):/export/brian/tina-4.1
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index d2bbec82b75..bfa6b53069a 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1459,6 +1459,37 @@ dnl END OF MYSQL_CHECK_ARCHIVE SECTION dnl --------------------------------------------------------------------------- dnl --------------------------------------------------------------------------- +dnl Macro: MYSQL_CHECK_CSVDB +dnl Sets HAVE_CSV_DB if --with-csv-storage-engine is used +dnl --------------------------------------------------------------------------- +AC_DEFUN([MYSQL_CHECK_CSVDB], [ + AC_ARG_WITH([csv-storage-engine], + [ + --with-csv-storage-engine + Enable the CSV Storage Engine], + [csvdb="$withval"], + [csvdb=no]) + AC_MSG_CHECKING([for csv storage engine]) + + case "$csvdb" in + yes ) + AC_DEFINE(HAVE_CSV_DB) + AC_MSG_RESULT([yes]) + [csvdb=yes] + ;; + * ) + AC_MSG_RESULT([no]) + [csvdb=no] + ;; + esac + +]) +dnl --------------------------------------------------------------------------- +dnl END OF MYSQL_CHECK_CSV SECTION +dnl --------------------------------------------------------------------------- + + +dnl --------------------------------------------------------------------------- dnl Macro: MYSQL_CHECK_NDBCLUSTER dnl Sets HAVE_NDBCLUSTER_DB if --with-ndbcluster is used dnl --------------------------------------------------------------------------- |