diff options
author | Roy T. Fielding <fielding@apache.org> | 2001-05-10 04:03:15 +0200 |
---|---|---|
committer | Roy T. Fielding <fielding@apache.org> | 2001-05-10 04:03:15 +0200 |
commit | ec4d3f7165d785eea3482577b4e8982f86360b8d (patch) | |
tree | 342bbbed47136cc8103318a1b078a6e08dfb4994 /acinclude.m4 | |
parent | Eventually we will want to only find openssl once regardless of how (diff) | |
download | apache2-ec4d3f7165d785eea3482577b4e8982f86360b8d.tar.xz apache2-ec4d3f7165d785eea3482577b4e8982f86360b8d.zip |
I forgot to add the bit that allows the macro to be called more than once.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89064 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index f497965cee..1b562eb6c2 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -360,6 +360,7 @@ dnl and then AC_TRY_LINK to test the libraries directly for the version, dnl but that will require someone who knows how to program openssl. dnl AC_DEFUN(APACHE_CHECK_SSL_TOOLKIT,[ +if test "x$ap_ssltk_base" = "x"; then AC_MSG_CHECKING(for SSL/TLS toolkit base) ap_ssltk_base="" AC_ARG_WITH(ssl, [ --with-ssl[=DIR] SSL/TLS toolkit (OpenSSL)], [ @@ -449,5 +450,6 @@ AC_DEFUN(APACHE_CHECK_SSL_TOOLKIT,[ fi APR_ADDTO(LIBS, [-lssl -lcrypto]) ap_cv_ssltk="$ap_ssltk_base" +fi ]) |