Displaying 1 result from an estimated 1 matches for "update_includes".
2017 Mar 28
4
[Bug 1139] New: The include guards on the include/libipset/linux_ip_set*.h are wrong
...processing by
scripts/headers_install.sh in the kernel source, which at aroundabout line 39
has the following:
-e 's@#(ifndef|define|endif[ \t]*/[*])[ \t]*_UAPI@#\1 @' \
which removes the _UAPI string prefix from the guard.
In order to resolve this, in the ipset top level Makefile.am, in
update_includes section, it needs to be changed from:
update_includes:
for x in ip_set.h ip_set_bitmap.h ip_set_hash.h ip_set_list.h; do \
cp kernel/include/uapi/linux/netfilter/ipset/$$x \
include/libipset/linux_$$x; \
done
to
update_includes:
for x in ip_set.h ip_set_bitmap.h ip_se...