Commit fe36122c authored by Max Kellermann's avatar Max Kellermann Committed by Eric Wong

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
parent 7261a12b
...@@ -22,7 +22,7 @@ AC_DEFINE(PROTOCOL_VERSION, "0.14.0", [The mpd protocol version]) ...@@ -22,7 +22,7 @@ AC_DEFINE(PROTOCOL_VERSION, "0.14.0", [The mpd protocol version])
MPD_LIBS="" MPD_LIBS=""
MPD_CFLAGS="" MPD_CFLAGS=""
if test x$GCC = xyes; then if test x$GCC = xyes; then
MPD_CFLAGS="-Wall -Wmissing-prototypes" MPD_CFLAGS="-Wall -Wextra -Wno-unused-parameter -Wno-deprecated-declarations -Wmissing-prototypes"
fi fi
if test -z "$prefix" || test "x$prefix" = xNONE; then if test -z "$prefix" || test "x$prefix" = xNONE; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment