From 2f1f6fc24d89529b35eb8cea7b236a728c5618d8 Mon Sep 17 00:00:00 2001 From: "Ralf S. Engelschall" Date: Sat, 5 May 2001 07:58:15 +0000 Subject: [PATCH] Allow mod_tls and mod_ssl coexists without interfering each other by renaming the --with-ssl option of mod_tls to --with-tls. This way we can use --enable-ssl/--with-ssl for mod_ssl and --enable-tls/--with-tls for mod_tls. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88999 13f79535-47bb-0310-9956-ffa450edef68 --- modules/tls/config.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/tls/config.m4 b/modules/tls/config.m4 index 2ecee966e0..1bbd7dd616 100644 --- a/modules/tls/config.m4 +++ b/modules/tls/config.m4 @@ -1,10 +1,10 @@ -AC_MSG_CHECKING(for SSL library) +AC_MSG_CHECKING(for TLS/SSL support) APACHE_MODPATH_INIT(tls) tls_objs="mod_tls.lo openssl_state_machine.lo" APACHE_MODULE(tls, TLS/SSL support, $tls_objs, , no, [ - AC_ARG_WITH(ssl, [ --with-ssl use a specific SSL library installation ], + AC_ARG_WITH(tls, [ --with-tls=DIR use a specific TLS/SSL library], [ searchfile="$withval/inc/ssl.h" if test -f $searchfile ; then @@ -37,7 +37,7 @@ APACHE_MODULE(tls, TLS/SSL support, $tls_objs, , no, [ fi AC_MSG_RESULT(found $ssl_lib) ],[ - AC_MSG_ERROR(--with-ssl not given) + AC_MSG_ERROR(--with-tls not given) ] ) ] ) APACHE_MODPATH_FINISH -- 2.50.1