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...@apache.org on 2001/01/02 19:32:51 UTC

cvs commit: httpd-2.0/modules/mappers mod_so.c

trawick     01/01/02 10:32:50

  Modified:    modules/mappers mod_so.c
  Log:
  Get mod_so to build again by including apr_general.h, which is where
  the APR_GET_POOL() macro is defined.
  
  Revision  Changes    Path
  1.31      +1 -0      httpd-2.0/modules/mappers/mod_so.c
  
  Index: mod_so.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/mappers/mod_so.c,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- mod_so.c	2001/01/02 01:34:05	1.30
  +++ mod_so.c	2001/01/02 18:32:49	1.31
  @@ -126,6 +126,7 @@
    */
   
   #include "apr.h"
  +#include "apr_general.h" /* for APR_GET_POOL() */
   #include "apr_dso.h"
   #include "apr_strings.h"
   #include "apr_errno.h"