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 A3961A00BE for ; Thu, 28 May 2020 11:14:20 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 903EA1DB7C; Thu, 28 May 2020 11:14:20 +0200 (CEST) Received: from us-smtp-1.mimecast.com (us-smtp-2.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id 0A6C81DB7B for ; Thu, 28 May 2020 11:14:18 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1590657258; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=x7koyH+Fq1SFXgFvmTLjW5+bwvFQW95L+NBzuBfqkbE=; b=bGnfDS4iLE9G1BV9XEusGiHnWqfGYQ1KbZ7nPIUV/mHjPUTGACy0WxqCgXCEKQyAHgu1+x YkgJB3wdDMSab7Di8uzhND6fX6rr48q2quXbGrrtGixESTQQX0FVuhP1JYFE7aL4wpQ5WH jczKlYAVpCFusBIwV/Dl+dJeyrhjvNs= Received: from mail-ua1-f72.google.com (mail-ua1-f72.google.com [209.85.222.72]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-12-SuyRIrqCPCGaldQtTdkcUA-1; Thu, 28 May 2020 05:14:17 -0400 X-MC-Unique: SuyRIrqCPCGaldQtTdkcUA-1 Received: by mail-ua1-f72.google.com with SMTP id g2so10570107ual.7 for ; Thu, 28 May 2020 02:14:16 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=x7koyH+Fq1SFXgFvmTLjW5+bwvFQW95L+NBzuBfqkbE=; b=ZCyex/CFR5H5TpaR15kij/bPkRCHR+P/QphobV0kOyQXswpy5nZRhN3Mpn6/IULOh3 D7kvUugtxVtnMhYM+M9nAWmokWxtJO+TpH9i9x+iqNldVPkFeIclNNTCPm/MWPBROIs8 6N2Mtcyt52bUVVnIwH1gOH/1Rb9ofQYh9mckTOohK0Fg4Ho+svXb/PM8877HWbMNM5Me bm3F0XwkiD+okF3w2cR+fkEX5LXQPD03PTyPGNzdiArguv+g9bQsNuO2xd4PeEJVE2RN WmegO1MkdTiX/RW/9Hk8PUECYA3eoWXS1YeNGqIdE7RTfP2JD9MN0FSTSPRbyDUDUSPc P4vQ== X-Gm-Message-State: AOAM532s67yKFZBHwyXj3fuRapnd0k4mWlYL3OpgOGL3nAjiTgSJgDzh c0qCnIi+yAsvfuPCqeqQdsBFcr6YH1FgplubAmAfsTGmu4vFToVNZsuvsY8Sl7G/JdRdD2NiCzj doBCStR51/Zw5V8OWHykkkOw= X-Received: by 2002:a05:6102:2012:: with SMTP id p18mr1175784vsr.198.1590657256459; Thu, 28 May 2020 02:14:16 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxb9uCCorDOxPyIhnlVcuXc5XYTiCpoR7iOERf99N2zIFY8gu3NZ6F8y8kvMWW3sSzKqtUchccH64+hc5nUTAw= X-Received: by 2002:a05:6102:2012:: with SMTP id p18mr1175767vsr.198.1590657256051; Thu, 28 May 2020 02:14:16 -0700 (PDT) MIME-Version: 1.0 References: <20200526202921.70718-1-thomas@monjalon.net> In-Reply-To: From: David Marchand Date: Thu, 28 May 2020 11:14:05 +0200 Message-ID: To: Thomas Monjalon , Luca Boccassi Cc: dev , Jerin Jacob Kollanukkaran , Kevin Traynor , dpdk stable , John McNamara , Marko Kovacevic X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-stable] [PATCH] doc: fix API index X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On Wed, May 27, 2020 at 2:17 PM David Marchand wrote: > > With Doxygen 1.8.18, a warning appears when tagging > > the main markdown header with {#index}. > > That's why the tag has been removed from the API index in DPDK 20.05. > > Unfortunately it makes the index page classified as a standard > > "related page" instead of being the "main page". > > > > The tag {#mainpage} could be used instead of {#index}. > > Another solution, chosen here, is to specify the main page file > > in the Doxygen configuration with the variable USE_MDFILE_AS_MAINPAGE. > > > > Fixes: 76fb8fc486f9 ("doc: fix build with doxygen 1.8.18") > > Cc: stable@dpdk.org > > > > Signed-off-by: Thomas Monjalon > Tested-by: David Marchand Applied, thanks. Luca, I saw you marked 76fb8fc486f9 ("doc: fix build with doxygen 1.8.18") for 19.11.3. So this current patch is a candidate for 19.11.3 too. -- David Marchand