Hi, Le samedi 03 novembre 2012 à 15:40 +0100, Jan Engelhardt a écrit : > > On Saturday 2012-11-03 12:32, Eric Leblond wrote: > > >diff --git a/configure.ac b/configure.ac > >index 0f21cf1..159cb0b 100644 > >--- a/configure.ac > >+++ b/configure.ac > >@@ -44,9 +44,15 @@ AC_SUBST([regular_CFLAGS]) > > dnl Check for the right nfnetlink version > > PKG_CHECK_MODULES([LIBNFNETLINK], [libnfnetlink >= 1.0.1]) > > PKG_CHECK_MODULES([LIBMNL], [libmnl >= 1.0.3]) > >-PKG_CHECK_MODULES([LIBNETFILTER_ACCT], [libnetfilter_acct >= 1.0.1]) > > PKG_CHECK_MODULES([LIBNETFILTER_CONNTRACK], [libnetfilter_conntrack >= 1.0.2]) > > PKG_CHECK_MODULES([LIBNETFILTER_LOG], [libnetfilter_log >= 1.0.0]) > >+AC_ARG_ENABLE(nfacct, > >+ AS_HELP_STRING([--enable-nfacct], [Enable nfacct module [default=yes]]),,[enable_nfacct=yes]) > >+AS_IF([test "x$enable_nfacct" = "xyes"], [ > >+ PKG_CHECK_MODULES([LIBNETFILTER_ACCT], [libnetfilter_acct >= 1.0.1]) > >+ AC_DEFINE([BUILD_NFACCT], [1], [Building nfacct module]) > >+]) > >+AM_CONDITIONAL([BUILD_NFACCT], [test "x$enable_nfacct" = "xyes"]) > > > > CT_CHECK_POSTGRES_DB() > > AM_CONDITIONAL(HAVE_PGSQL, test "x$PQLIBPATH" != "x") > >diff --git a/input/sum/Makefile.am b/input/sum/Makefile.am > >index 33fa849..b6ddb4d 100644 > >--- a/input/sum/Makefile.am > >+++ b/input/sum/Makefile.am > >@@ -1,8 +1,8 @@ > > AM_CPPFLAGS = -I$(top_srcdir)/include $(LIBNETFILTER_ACCT_CFLAGS) $(LIBMNL_CFLAGS) > > AM_CFLAGS = ${regular_CFLAGS} > >- > >+if BUILD_NFACCT > > pkglib_LTLIBRARIES = ulogd_inpflow_NFACCT.la > >- > > ulogd_inpflow_NFACCT_la_SOURCES = ulogd_inpflow_NFACCT.c > > ulogd_inpflow_NFACCT_la_LDFLAGS = -avoid-version -module > > ulogd_inpflow_NFACCT_la_LIBADD = $(LIBMNL_LIBS) $(LIBNETFILTER_ACCT_LIBS) > >+endif > > As far as I remember, AM conditionals do not automatically > become C macros. Can you check config.h? Yeah, that's why I've added AC_DEFINE when the module is built. BR, > So you will likely have to add the following line into the if..endif > block: > > AM_CPPFLAGS += -DBUILD_NFACCT -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html