diff options
author | Magne Mahre <magne.mahre@sun.com> | 2010-08-18 10:14:55 +0200 |
---|---|---|
committer | Magne Mahre <magne.mahre@sun.com> | 2010-08-18 10:14:55 +0200 |
commit | 6293c44ff6debb4f617260df727b281e77a41b5c (patch) | |
tree | f75492703f96762a9f74a7e64b424bbce83ba460 /config/ac-macros | |
parent | 968902ddc96e1fd81a35780609e33dba72d437c0 (diff) | |
download | mariadb-git-6293c44ff6debb4f617260df727b281e77a41b5c.tar.gz |
Bug #55547 InnoDB is not included when configuring by default
Added InnoDB to the 'default' plugin group, and modified
the autoconf script so the 'default' group is actually
built by default.
(i.e ./configure.am == ./configure.am --with-plugins=default ,
instead of being ./configure.am --with-plugins=none )
Diffstat (limited to 'config/ac-macros')
-rw-r--r-- | config/ac-macros/plugins.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/ac-macros/plugins.m4 b/config/ac-macros/plugins.m4 index 9fcfc031281..2aed1267fe6 100644 --- a/config/ac-macros/plugins.m4 +++ b/config/ac-macros/plugins.m4 @@ -782,7 +782,7 @@ dnl Emits shell script for checking configure arguments dnl Arguments to this macro is default value for selected plugins AC_DEFUN([_MYSQL_CHECK_PLUGIN_ARGS],[ - __MYSQL_CHECK_PLUGIN_ARGS(m4_default([$1], [none])) + __MYSQL_CHECK_PLUGIN_ARGS(m4_default([$1], [default])) ]) AC_DEFUN([__MYSQL_CHECK_PLUGIN_ARGS],[ |