summaryrefslogtreecommitdiffstats
path: root/include/http_config.h
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2000-06-18 05:01:30 +0200
committerJeff Trawick <trawick@apache.org>2000-06-18 05:01:30 +0200
commit132dc4e8fb673fb7c79a1ed4235403f676a7ea4d (patch)
tree7d58b9e037e9a3539a71a9a30971d5f414f23660 /include/http_config.h
parentMore command handlers. (diff)
downloadapache2-132dc4e8fb673fb7c79a1ed4235403f676a7ea4d.tar.xz
apache2-132dc4e8fb673fb7c79a1ed4235403f676a7ea4d.zip
Provide some more missing initializer macros for when AP_DEBUG isn't
defined (no, I didn't miss these in my commit this a.m. :) ). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85605 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_config.h')
-rw-r--r--include/http_config.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/http_config.h b/include/http_config.h
index 47a45d90da..441a84500e 100644
--- a/include/http_config.h
+++ b/include/http_config.h
@@ -161,6 +161,10 @@ typedef const char *(*cmd_func) ();
{ directive, func, mconfig, where, TAKE2, help }
# define AP_INIT_TAKE12(directive, func, mconfig, where, help) \
{ directive, func, mconfig, where, TAKE12, help }
+# define AP_INIT_ITERATE2(directive, func, mconfig, where, help) \
+ { directive, func, mconfig, where, ITERATE2, help }
+# define AP_INIT_TAKE23(directive, func, mconfig, where, help) \
+ { directive, func, mconfig, where, TAKE23, help }
# define AP_INIT_FLAG(directive, func, mconfig, where, help) \
{ directive, func, mconfig, where, FLAG, help }