martin      98/01/25 10:41:54

  Modified:    .        STATUS
               src/main http_main.c
  Log:
  More switches are printed for the -V switch now
  
  Revision  Changes    Path
  1.128     +1 -0      apachen/STATUS
  
  Index: STATUS
  ===================================================================
  RCS file: /home/cvs/apachen/STATUS,v
  retrieving revision 1.127
  retrieving revision 1.128
  diff -u -u -r1.127 -r1.128
  --- STATUS    1998/01/25 03:55:37     1.127
  +++ STATUS    1998/01/25 18:41:51     1.128
  @@ -133,6 +133,7 @@
         for OS's which don't support starting them automatically
         (enable with #define NEED_HASHBANG_EMUL)
       * more mod_mime_magic cleanup
  +    * Add more compile time diagnosis to main's -V switch
   
   Available Patches:
   
  
  
  
  1.275     +9 -0      apachen/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /home/cvs/apachen/src/main/http_main.c,v
  retrieving revision 1.274
  retrieving revision 1.275
  diff -u -u -r1.274 -r1.275
  --- http_main.c       1998/01/24 16:27:55     1.274
  +++ http_main.c       1998/01/25 18:41:52     1.275
  @@ -2801,6 +2801,9 @@
   #ifdef BIG_SECURITY_HOLE
       printf(" -D BIG_SECURITY_HOLE\n");
   #endif
  +#ifdef SECURITY_HOLE_PASS_AUTHORIZATION
  +    printf(" -D SECURITY_HOLE_PASS_AUTHORIZATION\n");
  +#endif
   #ifdef HTTPD_ROOT
       printf(" -D HTTPD_ROOT=\"" HTTPD_ROOT "\"\n");
   #endif
  @@ -2857,6 +2860,12 @@
   #ifdef PIPE_BUF
        printf(" -D PIPE_BUF=%ld\n",(long)PIPE_BUF);
   #endif
  +#endif
  +#ifdef MULTITHREAD
  +    printf(" -D MULTITHREAD\n");
  +#endif
  +#ifdef CHARSET_EBCDIC
  +    printf(" -D CHARSET_EBCDIC\n");
   #endif
       printf("\n");
   }
  
  
  

Reply via email to