enable more warnings

enable -Wextra (excluding -Wno-unused-parameter,
-Wno-deprecated-declarations).

git-svn-id: https://svn.musicpd.org/mpd/trunk@7225 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Max Kellermann 2008-04-12 04:06:11 +00:00 committed by Eric Wong
parent 7261a12b4c
commit fe36122c8c
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ AC_DEFINE(PROTOCOL_VERSION, "0.14.0", [The mpd protocol version])
MPD_LIBS=""
MPD_CFLAGS=""
if test x$GCC = xyes; then
MPD_CFLAGS="-Wall -Wmissing-prototypes"
MPD_CFLAGS="-Wall -Wextra -Wno-unused-parameter -Wno-deprecated-declarations -Wmissing-prototypes"
fi
if test -z "$prefix" || test "x$prefix" = xNONE; then