From d915b63db0fc2d501eed5c7742768df7a31a6187 Mon Sep 17 00:00:00 2001 From: "lenz@mysql.com" <> Date: Thu, 22 May 2003 16:00:19 +0200 Subject: [PATCH] - ISAM storage engine is now disabled by default. To enable it, configure the sources with "--with-isam" --- acinclude.m4 | 4 ++-- 1 file 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"