summaryrefslogtreecommitdiff
path: root/config/ac-macros/ha_isam.m4
blob: 5e354dfa624b6db7cd08367b0559323ffd3b7078 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)
])