mariadb/storage/maria/plug.in
Sergei Golubchik eeca1f8694 merge with 5.1
2011-10-07 00:18:30 +02:00

17 lines
607 B
Text

MYSQL_STORAGE_ENGINE(aria,, [Aria Storage Engine],
[Crash-safe tables with MyISAM heritage], [default,max,max-no-ndb])
MYSQL_PLUGIN_STATIC(aria, [libaria_s.la], [libaria_embedded.la])
MYSQL_PLUGIN_ACTIONS(aria, [
# AC_CONFIG_FILES(storage/maria/unittest/Makefile)
AC_ARG_WITH(aria-tmp-tables,
AC_HELP_STRING([--with-aria-tmp-tables],[Use Aria for internal temporary tables]),
[with_aria_tmp_tables=$withval],
[with_aria_tmp_tables=yes]
)
if test "$with_aria_tmp_tables" = "yes"
then
AC_DEFINE([USE_MARIA_FOR_TMP_TABLES], [1], [Aria is used for internal temporary tables])
fi
])