diff options
author | Sergei Golubchik <sergii@pisem.net> | 2010-09-18 09:53:48 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2010-09-18 09:53:48 +0200 |
commit | 44fc5897a16f32e5e3e7832ce3c3c4fd92fba3af (patch) | |
tree | 0dc1e0c514bda7f43b487e8fb6286c2c300d12f8 /config | |
parent | b4b6494643fa6b0eb96e6af230ab7c47e6ba1be3 (diff) | |
download | mariadb-git-44fc5897a16f32e5e3e7832ce3c3c4fd92fba3af.tar.gz |
bug in plugin.m4 that prevented group list in the MYSQL_PLUGIN declaration from working.
Diffstat (limited to 'config')
-rw-r--r-- | config/ac-macros/plugins.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/ac-macros/plugins.m4 b/config/ac-macros/plugins.m4 index 69daf72a6a8..86481cd0aa9 100644 --- a/config/ac-macros/plugins.m4 +++ b/config/ac-macros/plugins.m4 @@ -26,7 +26,7 @@ AC_DEFUN([MYSQL_PLUGIN],[ [__MYSQL_PLUGIN_]AS_TR_CPP([$1])[__], m4_default([$2], [$1 plugin]), m4_default([$3], [plugin for $1]), - m4_default([$4], []), + m4_default([[$4]], []), ) ]) @@ -60,7 +60,7 @@ dnl dnl --------------------------------------------------------------------------- AC_DEFUN([MYSQL_STORAGE_ENGINE],[ - MYSQL_PLUGIN([$1], [$3], [$4], [[$5]]) + MYSQL_PLUGIN([$1], [$3], [$4], [$5]) MYSQL_PLUGIN_DEFINE([$1], [WITH_]AS_TR_CPP([$1])[_STORAGE_ENGINE]) ifelse([$2],[no],[],[ _MYSQL_LEGACY_STORAGE_ENGINE( |