summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2005-06-18 16:10:53 +0200
committerunknown <serg@serg.mylan>2005-06-18 16:10:53 +0200
commit3dcdfa9d37ca7dfbf2cb00404eea88d16520095c (patch)
tree5380a6adcb32faa68ba51e9a60917c42973e8c3f /config
parentcaf23c07ffd79844e58c8c3211dc7ef35515294b (diff)
downloadmariadb-git-3dcdfa9d37ca7dfbf2cb00404eea88d16520095c.tar.gz
config/ac-macros/yassl.m4: fix --without-yassl
configure.in: fix --without-darwin-mwcc config/ac-macros/yassl.m4: fix --without-yassl configure.in: fix --without-darwin-mwcc
Diffstat (limited to 'config')
-rw-r--r--config/ac-macros/yassl.m49
1 files changed, 3 insertions, 6 deletions
diff --git a/config/ac-macros/yassl.m4 b/config/ac-macros/yassl.m4
index fb7c89181df..92133339343 100644
--- a/config/ac-macros/yassl.m4
+++ b/config/ac-macros/yassl.m4
@@ -5,12 +5,9 @@ extra/yassl/src/Makefile)
AC_DEFUN([MYSQL_CHECK_YASSL], [
AC_MSG_CHECKING(for yaSSL)
- AC_ARG_WITH([yassl],
- [ --with-yassl Include the yaSSL support],
- [yassl=yes],
- [yassl=no])
+ AC_ARG_WITH([yassl], [ --with-yassl Include the yaSSL support],,)
- if test "$yassl" = "yes"
+ if test "$with_yassl" = "yes"
then
if test "$openssl" != "no"
then
@@ -30,5 +27,5 @@ AC_DEFUN([MYSQL_CHECK_YASSL], [
AC_SUBST(openssl_libs)
AC_SUBST(openssl_includes)
AC_SUBST(yassl_dir)
- AM_CONDITIONAL([HAVE_YASSL], [ test "$yassl" = "yes" ])
+ AM_CONDITIONAL([HAVE_YASSL], [ test "with_yassl" = "yes" ])
])