summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorEric Leblond <eric@inl.fr>2008-08-01 10:32:13 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2008-08-01 10:32:13 +0200
commitd8a1b8d30e31b3e06376005f832b71df2eef6399 (patch)
tree718811cb23f8de96aaa584f575bcb38f71189005 /configure.in
parent74ad630be147c9f61bf3faee166a415edea4f4fc (diff)
compilation: set -Wno-ununused-parameter in CFLAGS
This patch adds the "-Wno-unused-parameter" option to CFLAGS. This suppress gcc warning that can not be fixed due to the usage of generic system like callback where function definition has to be standardized. Signed-off-by: Eric Leblond <eric@inl.fr> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 96cc2d0..8889575 100644
--- a/configure.in
+++ b/configure.in
@@ -30,7 +30,7 @@ dnl Checks for library functions.
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(socket strerror)
-CFLAGS="$CFLAGS -Wall -Wextra"
+CFLAGS="$CFLAGS -Wall -Wextra -Wno-unused-parameter"
dnl Check for the right nfnetlink version
LIBNFNETLINK_REQUIRED=0.0.39