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/06/17 14:29:53 UTC

cvs commit: apache-2.0/src/include http_config.h

trawick     00/06/17 05:29:53

  Modified:    src/include http_config.h
  Log:
  Fill in missing implementations of AP_INIT_whatever for when
  AP_DEBUG is not defined.  Apache now compiles for me on FreeBSD
  3.4 when AP_DEBUG isn't defined (albeit with a few warnings).
  
  Revision  Changes    Path
  1.33      +20 -0     apache-2.0/src/include/http_config.h
  
  Index: http_config.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/include/http_config.h,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- http_config.h	2000/06/17 11:13:03	1.32
  +++ http_config.h	2000/06/17 12:29:53	1.33
  @@ -138,7 +138,27 @@
   
   typedef const char *(*cmd_func) ();
   
  +# define AP_NO_ARGS  func
   # define AP_RAW_ARGS func
  +# define AP_TAKE1    func
  +# define AP_TAKE2    func
  +# define AP_TAKE3    func
  +# define AP_FLAG     func
  +
  +# define AP_INIT_NO_ARGS(directive, func, mconfig, where, help) \
  +    { directive, func, mconfig, where, RAW_ARGS, help }
  +# define AP_INIT_RAW_ARGS(directive, func, mconfig, where, help) \
  +    { directive, func, mconfig, where, RAW_ARGS, help }
  +# define AP_INIT_TAKE1(directive, func, mconfig, where, help) \
  +    { directive, func, mconfig, where, TAKE1, help }
  +# define AP_INIT_ITERATE(directive, func, mconfig, where, help) \
  +    { directive, func, mconfig, where, ITERATE, help }
  +# define AP_INIT_TAKE2(directive, func, mconfig, where, help) \
  +    { directive, func, mconfig, where, TAKE2, help }
  +# define AP_INIT_TAKE12(directive, func, mconfig, where, help) \
  +    { directive, func, mconfig, where, TAKE12, help }
  +# define AP_INIT_FLAG(directive, func, mconfig, where, help) \
  +    { directive, func, mconfig, where, FLAG, help }
   
   #endif