From 38f8cc8e0ccb981a06074cf9bf2ff8facb896c5d Mon Sep 17 00:00:00 2001 From: Patrick Griffis Date: Sat, 18 Nov 2017 21:06:21 -0500 Subject: sysinfo: Fix libpci detection For some reason on my system `libpci` is found even though its not installed...? Plus I forgot a few headers being included. --- plugins/sysinfo/meson.build | 10 +++++----- plugins/sysinfo/unix/parse.c | 6 ++++-- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/plugins/sysinfo/meson.build b/plugins/sysinfo/meson.build index 5656724e..7b4c9425 100644 --- a/plugins/sysinfo/meson.build +++ b/plugins/sysinfo/meson.build @@ -20,10 +20,14 @@ if system == 'linux' or system == 'darwin' if system == 'linux' libpci = dependency('libpci', required: false) - if libpci.found() + if libpci.found() and cc.has_header('pci/pci.h') sysinfo_deps += libpci sysinfo_cargs += '-DHAVE_LIBPCI' sysinfo_sources += 'unix/pci.c' + + picidsdir = libpci.get_pkgconfig_variable('idsdir') + pciids = join_paths(picidsdir, 'pci.ids') + sysinfo_cargs += '-DPCIIDS_FILE="@0@"'.format(pciids) endif sysinfo_includes += 'unix' sysinfo_sources += [ @@ -31,10 +35,6 @@ if system == 'linux' or system == 'darwin' 'unix/match.c', 'unix/parse.c', ] - - picidsdir = libpci.get_pkgconfig_variable('idsdir') - pciids = join_paths(picidsdir, 'pci.ids') - sysinfo_cargs += '-DPCIIDS_FILE="@0@"'.format(pciids) elif system == 'darwin' add_languages('objc') sysinfo_sources += 'osx/backend.m' diff --git a/plugins/sysinfo/unix/parse.c b/plugins/sysinfo/unix/parse.c index 30599068..784e2824 100644 --- a/plugins/sysinfo/unix/parse.c +++ b/plugins/sysinfo/unix/parse.c @@ -23,14 +23,16 @@ #include #include #include -#include +#ifdef HAVE_LIBPCI + #include + #include "pci.h" +#endif #include #ifdef __sparc__ #include #endif -#include "pci.h" #include "match.h" #include "parse.h" #include "sysinfo.h" -- cgit 1.4.1