diff options
author | brian@avenger.(none) <> | 2004-12-04 11:00:33 -0800 |
---|---|---|
committer | brian@avenger.(none) <> | 2004-12-04 11:00:33 -0800 |
commit | 20c18c77e1229a87a83a0841a0a1d596a8b1952a (patch) | |
tree | c28536d2037e8f874d88dc7cf3a9d13e2c6c98f1 /config/ac-macros/ha_archive.m4 | |
parent | 195e4be90772c7e0db5261d516a0c42be2036817 (diff) | |
download | mariadb-git-20c18c77e1229a87a83a0841a0a1d596a8b1952a.tar.gz |
Fixing problem with case insitive file systems.
Would you believe that I wrote all of this on a Mac? I just happen to be not using HFS for the partition I did this work on. Oops :)
Diffstat (limited to 'config/ac-macros/ha_archive.m4')
-rw-r--r-- | config/ac-macros/ha_archive.m4 | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/config/ac-macros/ha_archive.m4 b/config/ac-macros/ha_archive.m4 new file mode 100644 index 00000000000..2d2558ea600 --- /dev/null +++ b/config/ac-macros/ha_archive.m4 @@ -0,0 +1,29 @@ +dnl --------------------------------------------------------------------------- +dnl Macro: MYSQL_CHECK_ARCHIVEDB +dnl Sets HAVE_ARCHIVE_DB if --with-archive-storage-engine is used +dnl --------------------------------------------------------------------------- +AC_DEFUN([MYSQL_CHECK_ARCHIVEDB], [ + AC_ARG_WITH([archive-storage-engine], + [ + --with-archive-storage-engine + Enable the Archive Storage Engine], + [archivedb="$withval"], + [archivedb=no]) + AC_MSG_CHECKING([for archive storage engine]) + + case "$archivedb" in + yes ) + AC_DEFINE([HAVE_ARCHIVE_DB], [1], [Builds Archive Storage Engine]) + AC_MSG_RESULT([yes]) + [archivedb=yes] + ;; + * ) + AC_MSG_RESULT([no]) + [archivedb=no] + ;; + esac + +]) +dnl --------------------------------------------------------------------------- +dnl END OF MYSQL_CHECK_ARCHIVE SECTION +dnl --------------------------------------------------------------------------- |