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/16 12:45:14 UTC

cvs commit: httpd-2.0/server main.c

trawick     00/12/16 03:45:14

  Modified:    server   main.c
  Log:
  Display whether or not APR (and thus Apache) supports IPv6 in the
  httpd -V output.
  
  Revision  Changes    Path
  1.77      +3 -0      httpd-2.0/server/main.c
  
  Index: main.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/main.c,v
  retrieving revision 1.76
  retrieving revision 1.77
  diff -u -r1.76 -r1.77
  --- main.c	2000/12/07 11:37:04	1.76
  +++ main.c	2000/12/16 11:45:13	1.77
  @@ -120,6 +120,9 @@
   #ifdef NO_LINGCLOSE
       printf(" -D NO_LINGCLOSE\n");
   #endif
  +#if APR_HAVE_IPV6
  +    printf(" -D APR_HAVE_IPV6\n");
  +#endif
   #if APR_USE_FLOCK_SERIALIZE
       printf(" -D APR_USE_FLOCK_SERIALIZE\n");
   #endif