From 04596e4374e0a98ea35407fe4c77336879e3e7a9 Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Thu, 29 Mar 2012 11:04:06 +0000 Subject: [PATCH] =?UTF-8?q?evas=20doxyfile=20deprecated=20values=20from=20?= =?UTF-8?q?J=C3=A9r=C3=B4me=20Pinot?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The doxyfile of evas contains some variables that have been deprecated a long time ago (6 years for some of them). Here is a patch that fix this build warning: make -C doc doc make[1]: Entering directory `/tmp/evas/doc' rm -rf html/ latex/ man/ xml/ evas-1.2.0-alpha-doc.tar* doxygen warning: Tag `DETAILS_AT_TOP' at line 44 of file Doxyfile has become obsolete. To avoid this warning please update your configuration file using "doxygen -u" warning: Tag `MAX_DOT_GRAPH_WIDTH' at line 135 of file Doxyfile has become obsolete. To avoid this warning please update your configuration file using "doxygen -u" warning: Tag `MAX_DOT_GRAPH_HEIGHT' at line 136 of file Doxyfile has become obsolete. To avoid this warning please update your configuration file using "doxygen -u" As suggested, it would be good to run again doxygen -u Doxyfile.in SVN revision: 69740 --- legacy/evas/doc/Doxyfile.in | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/legacy/evas/doc/Doxyfile.in b/legacy/evas/doc/Doxyfile.in index 0fed7c08ae..e6d6739b40 100644 --- a/legacy/evas/doc/Doxyfile.in +++ b/legacy/evas/doc/Doxyfile.in @@ -41,7 +41,6 @@ VERBATIM_HEADERS = NO SHOW_INCLUDE_FILES = NO JAVADOC_AUTOBRIEF = YES MULTILINE_CPP_IS_BRIEF = NO -DETAILS_AT_TOP = NO INHERIT_DOCS = YES INLINE_INFO = YES SORT_MEMBER_DOCS = YES @@ -132,8 +131,7 @@ GRAPHICAL_HIERARCHY = NO DOT_IMAGE_FORMAT = png DOT_PATH = DOTFILE_DIRS = -MAX_DOT_GRAPH_WIDTH = 512 -MAX_DOT_GRAPH_HEIGHT = 512 +DOT_GRAPH_MAX_NODES = 50 GENERATE_LEGEND = YES DOT_CLEANUP = YES SEARCHENGINE = NO