build: suppress warning 'unused-parameter'

This commit is contained in:
Viktor Tarasov 2013-01-30 15:27:26 +01:00
parent 04fbf6ad08
commit db9e4c9039
1 changed files with 1 additions and 1 deletions

View File

@ -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.