You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@locus.apache.org on 2000/12/01 15:02:51 UTC

cvs commit: apache-2.0/src/main http_main.c

trawick     00/12/01 06:02:50

  Modified:    src/main http_main.c
  Log:
  Add "-D PROCESS_LOCK_IS_GLOBAL" to the httpd -V output when
  appropriate.
  
  Revision  Changes    Path
  1.75      +3 -0      apache-2.0/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/main/http_main.c,v
  retrieving revision 1.74
  retrieving revision 1.75
  diff -u -r1.74 -r1.75
  --- http_main.c	2000/11/29 17:32:53	1.74
  +++ http_main.c	2000/12/01 14:02:49	1.75
  @@ -135,6 +135,9 @@
   #if APR_USE_PTHREAD_SERIALIZE
       printf(" -D APR_USE_PTHREAD_SERIALIZE\n");
   #endif
  +#if APR_PROCESS_LOCK_IS_GLOBAL
  +    printf(" -D APR_PROCESS_LOCK_IS_GLOBAL\n");
  +#endif
   #ifdef SINGLE_LISTEN_UNSERIALIZED_ACCEPT
       printf(" -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT\n");
   #endif