rbb         99/12/20 11:44:48

  Modified:    src/lib/apr/test htdigest.c
  Log:
  Remove the apr_config.h include line and the ifdefs that require it.  This
  file will need to be updated when it is moved back into the Apache tree to
  check for system headers again, but right now, it can't check because we
  don't have a header file for it to use.
  
  Revision  Changes    Path
  1.11      +0 -9      apache-2.0/src/lib/apr/test/htdigest.c
  
  Index: htdigest.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/test/htdigest.c,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- htdigest.c        1999/12/15 12:20:40     1.10
  +++ htdigest.c        1999/12/20 19:44:42     1.11
  @@ -66,21 +66,12 @@
    * by Alexei Kosut, based on htpasswd.c, by Rob McCool
    */
   
  -#include "apr_config.h"
   #include "apr_lib.h"
   #include "apr_md5.h"
  -#ifdef HAVE_SYS_TYPES_H
   #include <sys/types.h>
  -#endif
  -#ifdef HAVE_SYS_SIGNAL_H
   #include <sys/signal.h>
  -#endif
  -#ifdef HAVE_SIGNAL_H
   #include <signal.h>
  -#endif
  -#ifdef HAVE_STDLIB_H
   #include <stdlib.h>
  -#endif
   
   #ifdef WIN32
   #include <conio.h>
  
  
  

Reply via email to