You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2014/07/17 23:31:54 UTC

svn commit: r1611480 - /httpd/httpd/trunk/docs/doxygen.conf

Author: jailletc36
Date: Thu Jul 17 21:31:53 2014
New Revision: 1611480

URL: http://svn.apache.org/r1611480
Log:
Fix all errors related to apreq in doxygen processing.
Remove useless comment. As far as I have tested (with dox 1.8.6), it works as described in doxygen doc.

Generated docs are still only visible from the "List File". More work is needed to have them included within the "Module/Core routine" architecture. However they are now useable and the ouput of "make dox" is now readable :)

Modified:
    httpd/httpd/trunk/docs/doxygen.conf

Modified: httpd/httpd/trunk/docs/doxygen.conf
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/doxygen.conf?rev=1611480&r1=1611479&r2=1611480&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/doxygen.conf (original)
+++ httpd/httpd/trunk/docs/doxygen.conf Thu Jul 17 21:31:53 2014
@@ -21,8 +21,10 @@ ENABLE_PREPROCESSING=YES
 MACRO_EXPANSION=YES
 QUIET=YES
 EXPAND_ONLY_PREDEF=YES
-#EXPAND_AS_DEFINED=
-# not sure why this doesn't work as EXPAND_AS_DEFINED, it should!
+EXPAND_AS_DEFINED=APREQ_PARSER_ARGS \
+    APREQ_HOOK_ARGS \
+    APREQ_DECLARE_PARSER \
+    APREQ_DECLARE_HOOK
 PREDEFINED="APR_DECLARE(x)=x" \
        "APR_DECLARE_NONSTD(x)=x" \
        "AP_DECLARE_HOOK(ret,name,args)=ret name args;" \
@@ -30,7 +32,7 @@ PREDEFINED="APR_DECLARE(x)=x" \
        "APR_DECLARE_EXTERNAL_HOOK(ns,link,ret,name,args)= ret ns##_hook_##name args;" \
        "AP_DECLARE(x)=x" \
        "AP_DECLARE_NONSTD(x)=x" \
-       AP_CORE_DECLARE(x)=x \
+       "AP_CORE_DECLARE(x)=x" \
        "AP_CORE_DECLARE_NONSTD(x)=x" \       
        "APR_HAS_THREADS" \
        "APR_HAS_MMAP" \
@@ -59,7 +61,9 @@ PREDEFINED="APR_DECLARE(x)=x" \
 	__pre_nw__= \
 	"APU_DECLARE(x)=x" \
 	"CACHE_DECLARE(x)=x" \
-	"PROXY_DECLARE(x)=x"
+	"PROXY_DECLARE(x)=x" \
+    "APREQ_DECLARE(x)=x" \
+    "APREQ_DECLARE_NONSTD(x)=x"
 	
 
 OPTIMIZE_OUTPUT_FOR_C=YES