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.
This commit is contained in:
Tobias Brunner 2020-02-13 09:52:31 +01:00
parent cb25022197
commit b2b69f4156
1 changed files with 1 additions and 1 deletions

View File

@ -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