diff options
author | Jan Engelhardt <jengelh@medozas.de> | 2010-10-31 00:44:12 +0200 |
---|---|---|
committer | Jan Engelhardt <jengelh@medozas.de> | 2010-10-31 00:46:35 +0200 |
commit | 39db4adb8932166a2fcb1143f512d2e212e6de8b (patch) | |
tree | b9d5e583ec67c558bc2ab13cfb5be0afd6e780cc /Make_global.am | |
parent | 6ef83f8c7ff52adaa6f50fc9017975a379f4c78e (diff) | |
download | conntrack-tools-39db4adb8932166a2fcb1143f512d2e212e6de8b.tar.gz conntrack-tools-39db4adb8932166a2fcb1143f512d2e212e6de8b.zip |
build: no need for error message in PKG_CHECK_MODULES
PKG_CHECK_MODULES already produces its own (and more verbose)
messsage when a module cannot be found.
Mucking around with CFLAGS and LIBS is also not needed since
pkgconfig takes care of providing variables, so let's use them in
Makefile.am.
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'Make_global.am')
-rw-r--r-- | Make_global.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Make_global.am b/Make_global.am index 4e9794e..e8f603a 100644 --- a/Make_global.am +++ b/Make_global.am @@ -2,4 +2,5 @@ AM_CPPFLAGS = -I$(top_srcdir)/include AM_CFLAGS = -std=gnu99 -W -Wall \ -Wmissing-prototypes -Wwrite-strings -Wcast-qual -Wfloat-equal -Wshadow -Wpointer-arith -Wbad-function-cast -Wsign-compare -Waggregate-return -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wstrict-prototypes -Wundef \ - -Wno-unused-parameter + -Wno-unused-parameter ${LIBNFNETLINK_CFLAGS} \ + ${LIBNETFILTER_CONNTRACK_CFLAGS} |