diff options
author | Jeroen Roovers <jer@gentoo.org> | 2020-04-02 16:31:38 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2020-04-02 16:47:52 +0200 |
commit | 63b37321e1252a117a3959d5c03eef6da5bb5958 (patch) | |
tree | a99ef39bc3bff0621ef670672b28e20d531c9372 /net-firewall/conntrack-tools/files | |
parent | app-portage/nattka: Bump to 0.0.1 (diff) | |
download | gentoo-63b37321e1252a117a3959d5c03eef6da5bb5958.tar.gz gentoo-63b37321e1252a117a3959d5c03eef6da5bb5958.tar.bz2 gentoo-63b37321e1252a117a3959d5c03eef6da5bb5958.zip |
net-firewall/conntrack-tools: Old
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Jeroen Roovers <jer@gentoo.org>
Diffstat (limited to 'net-firewall/conntrack-tools/files')
-rw-r--r-- | net-firewall/conntrack-tools/files/conntrack-tools-1.4.4-rpc.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/net-firewall/conntrack-tools/files/conntrack-tools-1.4.4-rpc.patch b/net-firewall/conntrack-tools/files/conntrack-tools-1.4.4-rpc.patch deleted file mode 100644 index 01ef537a7352..000000000000 --- a/net-firewall/conntrack-tools/files/conntrack-tools-1.4.4-rpc.patch +++ /dev/null @@ -1,41 +0,0 @@ ---- a/configure.ac -+++ b/configure.ac -@@ -50,6 +50,25 @@ - AS_HELP_STRING([--enable-systemd], [Build systemd support]), - [enable_systemd="$enableval"], [enable_systemd="no"]) - -+AC_ARG_WITH([libtirpc], -+ AS_HELP_STRING([--with-libtirpc], [Use libtirpc as RPC implementation (instead of sunrpc)]), -+ [], [ with_libtirpc=no ]) -+ -+AS_IF([test "x$with_libtirpc" != xno], -+ [PKG_CHECK_MODULES([TIRPC], -+ [libtirpc], -+ [RPC_CFLAGS=$TIRPC_CFLAGS; RPC_LIBS=$TIRPC_LIBS;], -+ [AC_MSG_ERROR([libtirpc requested, but library not found.])] -+ )], -+ [AC_CHECK_HEADER(rpc/rpc.h, -+ [RPC_CFLAGS=""; RPC_LIBS="";], -+ [AC_MSG_ERROR([sunrpc requested, but headers are not present.])] -+ )] -+) -+ -+AC_SUBST(RPC_CFLAGS) -+AC_SUBST(RPC_LIBS) -+ - PKG_CHECK_MODULES([LIBNFNETLINK], [libnfnetlink >= 1.0.1]) - PKG_CHECK_MODULES([LIBMNL], [libmnl >= 1.0.3]) - PKG_CHECK_MODULES([LIBNETFILTER_CONNTRACK], [libnetfilter_conntrack >= 1.0.6]) ---- a/src/helpers/Makefile.am -+++ b/src/helpers/Makefile.am -@@ -22,8 +22,8 @@ - ct_helper_ftp_la_CFLAGS = $(AM_CFLAGS) $(LIBNETFILTER_CONNTRACK_CFLAGS) - - ct_helper_rpc_la_SOURCES = rpc.c --ct_helper_rpc_la_LDFLAGS = -avoid-version -module $(LIBNETFILTER_CONNTRACK_LIBS) --ct_helper_rpc_la_CFLAGS = $(AM_CFLAGS) $(LIBNETFILTER_CONNTRACK_CFLAGS) -+ct_helper_rpc_la_LDFLAGS = -avoid-version -module $(LIBNETFILTER_CONNTRACK_LIBS) $(RPC_LIBS) -+ct_helper_rpc_la_CFLAGS = $(AM_CFLAGS) $(LIBNETFILTER_CONNTRACK_CFLAGS) $(RPC_CFLAGS) - - ct_helper_tftp_la_SOURCES = tftp.c - ct_helper_tftp_la_LDFLAGS = -avoid-version -module $(LIBNETFILTER_CONNTRACK_LIBS) |