From: Otavio Salvador Date: Mon, 7 Jan 2013 19:10:00 +0000 (-0200) Subject: build: Fix distribution to include 'nfnetlink_conntrack.h' X-Git-Tag: libnl3_2_18~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=de5744fb65f4e10ccce1baf5a275b433e32b0893;p=libnl build: Fix distribution to include 'nfnetlink_conntrack.h' The header has not been included in the headers list so it has been been distributed in the tarball making it fail to build in old kernels. Signed-off-by: Otavio Salvador Signed-off-by: Thomas Graf --- diff --git a/include/Makefile.am b/include/Makefile.am index e0f41fc..9ea97b8 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -109,8 +109,9 @@ noinst_HEADERS = \ linux/ipv6.h \ linux/neighbour.h \ linux/netfilter.h \ - linux/netfilter/nfnetlink_conntrack.h \ + linux/netfilter/nf_conntrack_common.h \ linux/netfilter/nfnetlink.h \ + linux/netfilter/nfnetlink_conntrack.h \ linux/netfilter/nfnetlink_log.h \ linux/netfilter/nfnetlink_queue.h \ linux/netlink.h \