mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
b94f191a77
mysql-test/mysql-test-run.pl: Fixed missed lines in merge. storage/maria/plug.in: Fixed problem with configuration. This is now included top level. storage/pbxt/plug.in: Fixed problem with configuration. This is included now in top level.
21 lines
803 B
Text
21 lines
803 B
Text
MYSQL_STORAGE_ENGINE(maria,, [Maria Storage Engine],
|
|
[Crash-safe tables with MyISAM heritage], [default,max,max-no-ndb])
|
|
MYSQL_PLUGIN_DIRECTORY(maria, [storage/maria])
|
|
MYSQL_PLUGIN_STATIC(maria, [libmaria.a])
|
|
# Maria will probably go first into max builds, not all builds,
|
|
# so we don't declare it mandatory.
|
|
MYSQL_PLUGIN_DEPENDS_ON_MYSQL_INTERNALS(maria, [ha_maria.cc])
|
|
|
|
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
|
|
])
|