diff options
Diffstat (limited to 'config/ac-macros/storage.m4')
-rw-r--r-- | config/ac-macros/storage.m4 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/ac-macros/storage.m4 b/config/ac-macros/storage.m4 index 8564e8ef5cc..4148aed818d 100644 --- a/config/ac-macros/storage.m4 +++ b/config/ac-macros/storage.m4 @@ -39,7 +39,10 @@ then AC_DEFINE([$5]) mysql_se_decls="${mysql_se_decls},$6" mysql_se_htons="${mysql_se_htons},&$6" - mysql_se_objs="$mysql_se_objs $8" + if test "$8" != "no" + then + mysql_se_objs="$mysql_se_objs $8" + fi mysql_se_dirs="$mysql_se_dirs $7" mysql_se_libs="$mysql_se_libs $9" else |