Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 12762 invoked by uid 500); 17 Jun 2000 12:29:54 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk X-No-Archive: yes Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 12751 invoked by uid 500); 17 Jun 2000 12:29:53 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 17 Jun 2000 12:29:53 -0000 Message-ID: <20000617122953.12747.qmail@locus.apache.org> From: trawick@locus.apache.org To: apache-2.0-cvs@apache.org Subject: 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