diff options
author | serg@serg.mylan <> | 2005-07-17 21:34:57 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2005-07-17 21:34:57 +0200 |
commit | 17364834358a3ded57b724203375d029418a95e5 (patch) | |
tree | 5e23bb549d23d350e706668a739bc2220c243225 /config | |
parent | 6ea960c8d6c8fc00a7a3a1a34e6f095117be02f4 (diff) | |
parent | 271f9e484dd1f69f4e595697e77b600e9b65abc7 (diff) | |
download | mariadb-git-17364834358a3ded57b724203375d029418a95e5.tar.gz |
Merge
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" ]) ]) |