mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 02:30:06 +01:00
18 lines
654 B
Text
18 lines
654 B
Text
MYSQL_STORAGE_ENGINE(aria,, [Aria Storage Engine],
|
|
[Crash-safe tables with MyISAM heritage], [default,max,max-no-ndb])
|
|
MYSQL_PLUGIN_DIRECTORY(aria, [storage/maria])
|
|
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
|
|
])
|