diff options
author | acurtis@xiphis.org <> | 2006-05-03 15:58:15 -0700 |
---|---|---|
committer | acurtis@xiphis.org <> | 2006-05-03 15:58:15 -0700 |
commit | 16d8d6bcca2fe667baf7bb8bb249a59e353b504e (patch) | |
tree | 4e46012dbd752625dada9f49cc9735b886391a04 /config/ac-macros/plugins.m4 | |
parent | 7bbd8fb05176a5ba94ae57c2a19f5792ad96aa1b (diff) | |
download | mariadb-git-16d8d6bcca2fe667baf7bb8bb249a59e353b504e.tar.gz |
fix legacy configure option handling
Diffstat (limited to 'config/ac-macros/plugins.m4')
-rw-r--r-- | config/ac-macros/plugins.m4 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/config/ac-macros/plugins.m4 b/config/ac-macros/plugins.m4 index 1488932c1ad..aa28a611e9e 100644 --- a/config/ac-macros/plugins.m4 +++ b/config/ac-macros/plugins.m4 @@ -60,13 +60,14 @@ AC_DEFUN([MYSQL_STORAGE_ENGINE],[ MYSQL_PLUGIN_DEFINE([$1], [WITH_]AS_TR_CPP([$1])[_STORAGE_ENGINE]) ifelse([$2],[no],[],[ _MYSQL_LEGACY_STORAGE_ENGINE( + m4_bpatsubst([$1], -, _), m4_bpatsubst(m4_default([$2], [$1-storage-engine]), -, _)) ]) ]) AC_DEFUN([_MYSQL_LEGACY_STORAGE_ENGINE],[ -if test "[${with_]$1[+set}]" = set; then - [with_plugin_]$1="[$with_]$1" +if test "[${with_]$2[+set}]" = set; then + [with_plugin_]$1="[$with_]$2" fi ]) |