Return-Path: Delivered-To: apmail-httpd-test-cvs-archive@httpd.apache.org Received: (qmail 70308 invoked by uid 500); 20 Nov 2001 23:13:34 -0000 Mailing-List: contact test-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: test-dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list test-cvs@httpd.apache.org Received: (qmail 70296 invoked from network); 20 Nov 2001 23:13:34 -0000 Date: 20 Nov 2001 22:58:39 -0000 Message-ID: <20011120225839.57407.qmail@icarus.apache.org> From: aaron@apache.org To: httpd-test-cvs@apache.org Subject: cvs commit: httpd-test/flood configure.in X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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: <20011116151249.B1943@waka.ebuilt.net> 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])