summaryrefslogtreecommitdiff
path: root/storage/maria/plug.in
blob: f7c54da219002f953bcfba086799855ff36ade0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
MYSQL_STORAGE_ENGINE(maria,, [Maria Storage Engine],
        [Crash-safe tables with MyISAM heritage], [default,max,max-no-ndb])
MYSQL_PLUGIN_STATIC(maria,     [libmaria_s.la], [libmaria_embedded.la])
# Maria will probably go first into max builds, not all builds,
# so we don't declare it mandatory.

MYSQL_PLUGIN_ACTIONS(maria,  [
# AC_CONFIG_FILES(storage/maria/unittest/Makefile)
AC_ARG_WITH(maria-tmp-tables,
    AC_HELP_STRING([--with-maria-tmp-tables],[Use Maria for internal temporary tables]),
    [with_maria_tmp_tables=$withval],
    [with_maria_tmp_tables=yes]
)

if test "$with_maria_tmp_tables" = "yes"
then
  AC_DEFINE([USE_MARIA_FOR_TMP_TABLES], [1], [Maria is used for internal temporary tables])
fi
])