diff options
author | unknown <serg@serg.mylan> | 2005-06-18 16:10:53 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2005-06-18 16:10:53 +0200 |
commit | cc24ed0e3e0d5e4ac2e5443e81da3f88166f548a (patch) | |
tree | 5380a6adcb32faa68ba51e9a60917c42973e8c3f /config | |
parent | aece56e30a3f3f6451d36b6a614ae692840bb4c8 (diff) | |
download | mariadb-git-cc24ed0e3e0d5e4ac2e5443e81da3f88166f548a.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.m4 | 9 |
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" ]) ]) |