summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorunknown <lenz@mysql.com>2003-05-22 16:00:19 +0200
committerunknown <lenz@mysql.com>2003-05-22 16:00:19 +0200
commit5ebc3071907551e6a0f870102c1ad410b63e13bc (patch)
tree3d0a8ea83f6bcedf26709d27922042b1aa7867f3 /acinclude.m4
parent9b92f5858adcc25f696d8d06cab90288c16641ac (diff)
downloadmariadb-git-5ebc3071907551e6a0f870102c1ad410b63e13bc.tar.gz
- ISAM storage engine is now disabled by default. To enable it, configure
the sources with "--with-isam"
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 269b505386c..e347276dddb 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -868,9 +868,9 @@ AC_SUBST(orbit_idl)
AC_DEFUN([MYSQL_CHECK_ISAM], [
AC_ARG_WITH([isam], [
- --without-isam Disable the ISAM table type],
+ --with-isam Enable the ISAM table type],
[with_isam="$withval"],
- [with_isam=yes])
+ [with_isam=no])
isam_libs=
if test X"$with_isam" = X"yes"