You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-cvs@httpd.apache.org by aa...@apache.org on 2001/11/17 00:10:36 UTC

cvs commit: httpd-test/flood configure.in

aaron       01/11/16 15:10:36

  Modified:    flood    configure.in
  Log:
  Per Roy's recommendations (aka -1 Veto ;) I've switched SSL to be disabled
  by default.
  
  Revision  Changes    Path
  1.8       +5 -3      httpd-test/flood/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/httpd-test/flood/configure.in,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- configure.in	2001/11/16 22:38:12	1.7
  +++ configure.in	2001/11/16 23:10:36	1.8
  @@ -42,11 +42,13 @@
   
   fi])
   
  -dnl SSL is enabled by default
  +dnl SSL is disabled by default
  +dnl "Export and import restrictions in some countries require that it be
  +dnl  disabled by default." See: <20...@waka.ebuilt.net>
   AC_ARG_ENABLE(ssl,
  -  [  --disable-ssl           Disable SSL support (enabled by default)],
  +  [  --enable-ssl            Disable SSL support (disabled by default)],
   [enable_ssl=$enableval],
  -[enable_ssl=yes])
  +[enable_ssl=no])
   
   flood_has_openssl=0
   if test "$enable_ssl" = "yes"; then