summaryrefslogtreecommitdiffstats
path: root/output
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@inai.de>2012-11-27 00:52:28 +0100
committerJan Engelhardt <jengelh@inai.de>2012-11-27 00:53:10 +0100
commit58a5cac020af30544c59b32496072ee131b65821 (patch)
tree6cd5cad39401a3ecbc0a07caa9e34f30ae9241e2 /output
parentb3de0a770468fc70200723b558d738ec180dec35 (diff)
build: resolve compile error due to missing nfacct CPPFLAGS
Fixes this error: make[3]: Entering directory "/home/jengelh/code/ulogd2/output" CC ulogd_output_XML.lo ulogd_output_XML.c:31:49: fatal error: libnetfilter_acct/libnetfilter_acct.h: No such file or directory (Note that pkgconfig-provided cflags are actually cppflags, so I add ${LIBNETFILTER_ACCT_CFLAGS} to AM_CPPFLAGS.) Signed-off-by: Jan Engelhardt <jengelh@inai.de>
Diffstat (limited to 'output')
-rw-r--r--output/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/output/Makefile.am b/output/Makefile.am
index 630aee6..61d827a 100644
--- a/output/Makefile.am
+++ b/output/Makefile.am
@@ -1,4 +1,4 @@
-AM_CPPFLAGS = -I$(top_srcdir)/include
+AM_CPPFLAGS = -I$(top_srcdir)/include ${LIBNETFILTER_ACCT_CFLAGS}
AM_CFLAGS = ${regular_CFLAGS} ${LIBNETFILTER_LOG_CFLAGS} \
${LIBNETFILTER_CONNTRACK_CFLAGS}