diff options
author | Max Kellermann <max@duempel.org> | 2008-04-12 04:06:11 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-04-12 04:06:11 +0000 |
commit | fe36122c8cc636607735faeaefcbf01c5d096e32 (patch) | |
tree | 8eb00537f2e1fd1556747590c8023bb5b95489b3 | |
parent | 7261a12b4c8d59eb95dce8f9b1cafceed381abcb (diff) | |
download | mpd-fe36122c8cc636607735faeaefcbf01c5d096e32.tar.gz mpd-fe36122c8cc636607735faeaefcbf01c5d096e32.tar.xz mpd-fe36122c8cc636607735faeaefcbf01c5d096e32.zip |
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
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6753dc98b..679be11e6 100644 --- a/configure.ac +++ b/configure.ac @@ -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 |