From: Ruben Kerkhof Date: Fri, 18 Aug 2017 10:51:54 +0000 (+0200) Subject: Merge pull request #2405 from cpaelzer/fix-dpdk-pkg-config-if-not-available X-Git-Tag: collectd-5.8.0~105 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=9e6bf7d6cd8c54f9239745644c3598fd026e293b;hp=929a7f21e8f6709b7acc7491ffc71e8d95135cc2 Merge pull request #2405 from cpaelzer/fix-dpdk-pkg-config-if-not-available configure.ac: dpdk: tolerate no pkg-config --- diff --git a/configure.ac b/configure.ac index 13e63404..7648152e 100644 --- a/configure.ac +++ b/configure.ac @@ -2360,7 +2360,8 @@ AC_ARG_WITH([libdpdk], ) if test "x$with_libdpdk" != "xno"; then - PKG_CHECK_MODULES([DPDK], [libdpdk]) + PKG_CHECK_MODULES([DPDK], [libdpdk], [], + [AC_MSG_NOTICE([no DPDK pkg-config, using defaults])]) if test "x$LIBDPDK_CPPFLAGS" = "x"; then LIBDPDK_CPPFLAGS="-I/usr/include/dpdk" fi