configure.ac, add -Wno-unused-but-set-variable to our default gcc CFLAGS

This commit is contained in:
rlar 2015-01-04 20:53:35 +01:00
parent ccc4c60d81
commit 8dc0d0ce5c
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ if test "x$ext_CFLAGS" != xyes; then
fi
if test "x$GCC" = xyes; then
CFLAGS="$CFLAGS -Wall -Wextra -Wmissing-prototypes -Wstrict-prototypes -Wnested-externs -Wold-style-definition -Wredundant-decls -Wconversion"
CFLAGS="$CFLAGS -Wall -Wextra -Wmissing-prototypes -Wstrict-prototypes -Wnested-externs -Wold-style-definition -Wredundant-decls -Wconversion -Wno-unused-but-set-variable"
fi
fi