]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Don't include references they're too verbose
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 7 Jan 2013 11:09:46 +0000 (11:09 +0000)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 7 Jan 2013 11:55:39 +0000 (11:55 +0000)
Define multivalued TAGs properly

doc/source/Doxyfile

index 797bb2d54a88e26bc792bf50bcd1d39b86de5bde..2ffcf628491a5c51d44a7f3ae924758da0ab5d9f 100644 (file)
@@ -628,8 +628,7 @@ WARN_LOGFILE           =
 # directories like "/usr/src/myproject". Separate the files or directories 
 # with spaces.
 
-INPUT                  = ../../src \
-                         extra
+INPUT                  = ../../src extra
 
 # This tag can be used to specify the character encoding of the source files 
 # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is 
@@ -776,7 +775,7 @@ REFERENCED_BY_RELATION = YES
 # then for each documented function all documented entities 
 # called/used by that function will be listed.
 
-REFERENCES_RELATION    = YES
+REFERENCES_RELATION    = NO
 
 # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) 
 # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from 
@@ -1457,14 +1456,14 @@ SEARCH_INCLUDES        = YES
 # contain include files that are not input files but should be processed by 
 # the preprocessor.
 
-INCLUDE_PATH           = src/include/
+INCLUDE_PATH           = ./../../src/freeradius-devel
 
 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 
 # patterns (like *.h and *.hpp) to filter out the header-files in the 
 # directories. If left blank, the patterns specified with FILE_PATTERNS will 
 # be used.
 
-INCLUDE_FILE_PATTERNS  = *-h *.h
+INCLUDE_FILE_PATTERNS  = *.h
 
 # The PREDEFINED tag can be used to specify one or more macro names that 
 # are defined before the preprocessor is started (similar to the -D option of 
@@ -1474,9 +1473,10 @@ INCLUDE_FILE_PATTERNS  = *-h *.h
 # undefined via #undef or recursively expanded use the := operator 
 # instead of the = operator.
 
-PREDEFINED             = WITH_PROXY \
-                         WITH_TCP \
-                         WITH_UNLANG
+PREDEFINED            := WITH_PROXY
+PREDEFINED            += WITH_TCP
+PREDEFINED            += WITH_UNLANG
+PREDEFINED            += WITH_DHCP
 
 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 
 # this tag can be used to specify a list of macro names that should be expanded.