From mboxrd@z Thu Jan 1 00:00:00 1970 From: luca.boccassi@gmail.com Subject: [PATCH 1/3] build: rename pkgconfig to libdpdk.pc Date: Fri, 15 Sep 2017 18:36:10 +0100 Message-ID: <20170915173612.13636-2-luca.boccassi@gmail.com> References: <20170915173612.13636-1-luca.boccassi@gmail.com> Cc: bruce.richardson@intel.com, Luca Boccassi To: dev@dpdk.org Return-path: Received: from mail-wm0-f65.google.com (mail-wm0-f65.google.com [74.125.82.65]) by dpdk.org (Postfix) with ESMTP id D64213238 for ; Fri, 15 Sep 2017 19:36:36 +0200 (CEST) Received: by mail-wm0-f65.google.com with SMTP id f4so3364982wmh.4 for ; Fri, 15 Sep 2017 10:36:36 -0700 (PDT) In-Reply-To: <20170915173612.13636-1-luca.boccassi@gmail.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" From: Luca Boccassi In Debian and Ubuntu we have been shipping a pkgconfig file for DPDK for more than a year now, and the filename is libdpdk.pc. A few downstream projects, like OVS and Collectd, have adopted the use of libdpdk.pc in their build systems as well. In order to maintain backward compatibility, rename the file from DPDK.pc to libdpdk.pc. Signed-off-by: Luca Boccassi --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 6ad3e8053..f41fb4120 100644 --- a/meson.build +++ b/meson.build @@ -81,6 +81,7 @@ endif pkg = import('pkgconfig') pkg.generate(name: meson.project_name(), + filebase: 'lib' + meson.project_name().to_lower(), version: meson.project_version(), libraries: dpdk_libraries, description: 'The Data Plane Development Kit (DPDK)', -- 2.11.0