]> granicus.if.org Git - apache/commitdiff
Allow mod_tls and mod_ssl coexists without interfering each other by
authorRalf S. Engelschall <rse@apache.org>
Sat, 5 May 2001 07:58:15 +0000 (07:58 +0000)
committerRalf S. Engelschall <rse@apache.org>
Sat, 5 May 2001 07:58:15 +0000 (07:58 +0000)
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

index 2ecee966e0df4d4d86b2469219dbea3a8aed5d04..1bbd7dd616b0859fa9d28f69bee0d47d1f25d2c7 100644 (file)
@@ -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