From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 55910A328D for ; Tue, 22 Oct 2019 14:25:58 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 39AB31BEC5; Tue, 22 Oct 2019 14:25:57 +0200 (CEST) Received: from git-send-mailer.rdmz.labs.mlnx (unknown [37.142.13.130]) by dpdk.org (Postfix) with ESMTP id 9E60D4C8E for ; Tue, 22 Oct 2019 14:25:55 +0200 (CEST) From: Ali Alnubani To: dev@dpdk.org Date: Tue, 22 Oct 2019 15:25:52 +0300 Message-Id: <20191022122552.30419-1-alialnu@mellanox.com> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH] doc: disable doxygen's HAVE_DOT tag X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Ubuntu ships with a patched version of doxygen that enables HAVE_DOT. Enabling this option causes the warning: """ warning: Included by graph for 'rte_common.h' not generated, too many nodes. Consider increasing DOT_GRAPH_MAX_NODES """ This reproduces with doxygen version 1.8.13 and dot - graphviz version 2.40.1 on Ubuntu 18.04. This will force doxygen not to assume that dot (part of Graphviz) is installed, which is the default, and will result in dot not being used for visualization. The other option is to increase DOT_GRAPH_MAX_NODES to a value larger than 55. See: - http://changelogs.ubuntu.com/changelogs/pool/main/d/doxygen/doxygen_1.8.13-10/changelog - http://www.doxygen.nl/manual/config.html#cfg_have_dot Signed-off-by: Ali Alnubani --- doc/api/doxy-api.conf.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/api/doxy-api.conf.in b/doc/api/doxy-api.conf.in index 908cee8f7..8e6cff79a 100644 --- a/doc/api/doxy-api.conf.in +++ b/doc/api/doxy-api.conf.in @@ -98,3 +98,5 @@ GENERATE_HTML = YES HTML_OUTPUT = @HTML_OUTPUT@ GENERATE_LATEX = NO GENERATE_MAN = NO + +HAVE_DOT = NO -- 2.23.0