jerenkrantz 01/12/04 01:11:10
Modified: flood configure.in
Log:
Remove the lameo defaults for randfile and capath. If SSL is specified,
they must specify this.
Revision Changes Path
1.14 +9 -9 httpd-test/flood/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/httpd-test/flood/configure.in,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- configure.in 2001/12/03 21:58:43 1.13
+++ configure.in 2001/12/04 09:11:10 1.14
@@ -55,17 +55,17 @@
dnl BIO_next only appears in newer versions of OpenSSL
AC_CHECK_LIB(ssl, BIO_next, LIBS="$LIBS -lssl")
flood_has_openssl=1
-fi
-AC_ARG_WITH(randfile,
- [ --with-randfile=PATH Path to a random file used by OpenSSL (default
/tmp/.rnd)],
- [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-randfile
requires a path'); else RANDFILE="$withval"; fi],
- [RANDFILE="/tmp/.rnd"])
+ AC_ARG_WITH(randfile,
+ [ --with-randfile=PATH Path to a random file used by OpenSSL],
+ [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-randfile
requires a path'); else RANDFILE="$withval"; fi],
+ [AC_MSG_ERROR('option --with-randfile must be specified')])
-AC_ARG_WITH(capath,
- [ --with-capath=PATH Path to a directory with c_rehash'd CA files
used by OpenSSL (default /tmp/certdir)],
- [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-capath
requires a path'); else CAPATH="$withval"; fi],
- [CAPATH="/tmp/certdir"])
+ AC_ARG_WITH(capath,
+ [ --with-capath=PATH Path to a directory with c_rehash'd CA files
used by OpenSSL],
+ [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-capath
requires a path'); else CAPATH="$withval"; fi],
+ [AC_MSG_ERROR('option --with-capath must be specified')])
+fi
dnl Need for now. Remove later.
AC_ARG_WITH(httpd,