mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
20c18c77e1
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 :)
15 lines
384 B
Text
15 lines
384 B
Text
AC_DEFUN([MYSQL_CHECK_ISAM], [
|
|
AC_ARG_WITH([isam], [
|
|
--with-isam Enable the ISAM table type],
|
|
[with_isam="$withval"],
|
|
[with_isam=no])
|
|
|
|
isam_libs=
|
|
if test X"$with_isam" = X"yes"
|
|
then
|
|
AC_DEFINE([HAVE_ISAM], [1], [Using old ISAM tables])
|
|
isam_libs="\$(top_builddir)/isam/libnisam.a\
|
|
\$(top_builddir)/merge/libmerge.a"
|
|
fi
|
|
AC_SUBST(isam_libs)
|
|
])
|