From db9e4c90393737869819caf8bf5a26013f9c745b Mon Sep 17 00:00:00 2001 From: Viktor Tarasov Date: Wed, 30 Jan 2013 15:27:26 +0100 Subject: [PATCH] build: suppress warning 'unused-parameter' --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 7de2a9b3..b60ebeb3 100644 --- a/configure.ac +++ b/configure.ac @@ -614,7 +614,7 @@ if test "${enable_pedantic}" = "yes"; then CFLAGS="${CFLAGS} -pedantic -Wextra" fi if test "${enable_strict}" = "yes"; then - CFLAGS="${CFLAGS} -Wall" + CFLAGS="${CFLAGS} -Wall -Wextra -Wno-unused-parameter" fi if test "$GCC" = "yes"; then # This should be resolved not ignored.