From b2b69f41569e27fde5c795cdd7431210a923dcf2 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Thu, 13 Feb 2020 09:52:31 +0100 Subject: [PATCH] configure: Depend on libip4tc instead of libiptc The libiptc meta-package apparently will be removed e.g. from Debian. We currently only need IPv4 support in the connmark and forecast plugins. Fixes #3338. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 1aa8cdcc0..b0d5fcb8c 100644 --- a/configure.ac +++ b/configure.ac @@ -1200,7 +1200,7 @@ if test x$xauth_pam = xtrue; then fi if test x$connmark = xtrue -o x$forecast = xtrue; then - PKG_CHECK_MODULES(libiptc, [libiptc]) + PKG_CHECK_MODULES(libiptc, [libip4tc]) AC_SUBST(libiptc_CFLAGS) AC_SUBST(libiptc_LIBS) fi