aaron 01/11/20 14:58:39
Modified: flood configure.in
Log:
A better description for the --with-openssl param.
Fix my thinko in the --enable-ssl param.
Revision Changes Path
1.11 +2 -2 httpd-test/flood/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/httpd-test/flood/configure.in,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- configure.in 2001/11/17 02:20:09 1.10
+++ configure.in 2001/11/20 22:58:39 1.11
@@ -14,7 +14,7 @@
AC_CANONICAL_SYSTEM
AC_ARG_WITH(openssl,
- [ --with-openssl=PATH Prefix to openssl],
+ [ --with-openssl=PATH Path to OpenSSL (eg. /usr/local/ssl)],
[if test "$withval" = "yes"; then
AC_MSG_ERROR('option --with-openssl requires a path')
else
@@ -37,7 +37,7 @@
dnl "Export and import restrictions in some countries require that it be
dnl disabled by default." See: <[EMAIL PROTECTED]>
AC_ARG_ENABLE(ssl,
- [ --enable-ssl Disable SSL support (disabled by default)],
+ [ --enable-ssl Enable SSL support (disabled by default)],
[enable_ssl=$enableval],
[enable_ssl=no])