From: Ralf S. Engelschall Date: Sat, 5 May 2001 07:58:15 +0000 (+0000) Subject: Allow mod_tls and mod_ssl coexists without interfering each other by X-Git-Tag: 2.0.18~111 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f1f6fc24d89529b35eb8cea7b236a728c5618d8;p=apache 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 --- 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