From patchwork Fri Jun 2 11:06:59 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jerin Jacob Kollanukkaran X-Patchwork-Id: 127956 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 336C342BF2; Fri, 2 Jun 2023 13:08:17 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 15DF740ED8; Fri, 2 Jun 2023 13:08:17 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 6F35D406B8; Fri, 2 Jun 2023 13:08:15 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 3525kXLf021616; Fri, 2 Jun 2023 04:08:08 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=5Do7xfphv9gJYjlu9Lyu0Ggxsong19P/LuKn9h81ie8=; b=Zh3WmrzZgtY7Ts32oEZgfDrw+Y3waaJ5MyV/E/SAF+EtIDIfAyyqOsAnDLv2LWUHwhw5 3ifGiEq8ZtbODYqN0M3GsICpkyfExjM/OaYfaUKWge1p22AqoG3p73BppaeB1v4jKVJ7 HgxhsKNkPZhikEAUHYjsgAPYpCKZ6n+ZBfzEvmH5AhDGEyTZnk6t403IdwvEsETnshyW NMoOE2zqJIjzVoFjg6tfnkHZ+/kmJFF+wVEQ84qCMY6bMD6dP1k1RKfv26Z2LWRQGvlA BSNqFqYEGyXMbJ+aw4jBOhqaGEKecsnqWaVlDoaM/NIq+wU6q/oGCQorjlCht1YmBmE7 LA== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3qx5brr64b-7 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Fri, 02 Jun 2023 04:08:07 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.48; Fri, 2 Jun 2023 04:07:06 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.48 via Frontend Transport; Fri, 2 Jun 2023 04:07:06 -0700 Received: from jerin-lab.marvell.com (jerin-lab.marvell.com [10.28.34.14]) by maili.marvell.com (Postfix) with ESMTP id F39ED3F7041; Fri, 2 Jun 2023 04:07:04 -0700 (PDT) From: To: CC: , , Jerin Jacob , Subject: [dpdk-dev] [PATCH v3] doc: remove warning with doxygen 1.9.7 Date: Fri, 2 Jun 2023 16:36:59 +0530 Message-ID: <20230602110659.214503-1-jerinj@marvell.com> X-Mailer: git-send-email 2.40.1 In-Reply-To: <20230602083032.4160601-1-jerinj@marvell.com> References: <20230602083032.4160601-1-jerinj@marvell.com> MIME-Version: 1.0 X-Proofpoint-GUID: IuPnektXpLrMyO8C5MLOHZj4TPykIDUx X-Proofpoint-ORIG-GUID: IuPnektXpLrMyO8C5MLOHZj4TPykIDUx X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.254,Aquarius:18.0.957,Hydra:6.0.573,FMLib:17.11.176.26 definitions=2023-06-02_07,2023-06-02_01,2023-05-22_02 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org From: Jerin Jacob Since doxygen 1.9.7 version, HTML_TIMESTAMP configuration option changed to TIMESTAMP [2]. Fixed the following warning[1] by removing TIMESTAMP options all together as all new versions(since 1.8.9) of doxygen this option is disabled by default. Another option was considered to have this configuration option based on version check, which may not be worth having it, especially, external_program.version() API introduced in 0.62.0 version of meson. [1] Warning: Tag 'HTML_TIMESTAMP' at line 115 of file 'doc/api/doxy-api.conf' has become obsolete. [2] https://www.doxygen.nl/manual/config.html#cfg_timestamp Cc: stable@dpdk.org Signed-off-by: Jerin Jacob Acked-by: Bruce Richardson --- v3: - Based on Bruce's feedback, just removed the option all together to avoid special handling. v2: - use run_command() as https://mesonbuild.com/Reference-manual_returned_external_program.html#external_programversion introduced in 0.62 version and DPDK min meson version is 0.53.2. doc/api/doxy-api.conf.in | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/api/doxy-api.conf.in b/doc/api/doxy-api.conf.in index d230a19e1f..deea7b747d 100644 --- a/doc/api/doxy-api.conf.in +++ b/doc/api/doxy-api.conf.in @@ -111,7 +111,6 @@ GENERATE_DEPRECATEDLIST = YES VERBATIM_HEADERS = NO ALPHABETICAL_INDEX = NO -HTML_TIMESTAMP = NO HTML_DYNAMIC_SECTIONS = YES HTML_EXTRA_STYLESHEET = @TOPDIR@/doc/api/custom.css SEARCHENGINE = YES