diff options
author | Benjamin Otte <otte@redhat.com> | 2010-03-22 12:02:16 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-03-22 12:05:59 +0100 |
commit | b7655bbd2ef5f07cb7079a223aedaecdbc05e111 (patch) | |
tree | a114aedb89f609a2afeac3f27e11851d93dd0d5d /configure.ac | |
parent | 63fdeb05f1f78230f4f39298fa7759d898fe463e (diff) | |
download | gstreamer-plugins-bad-b7655bbd2ef5f07cb7079a223aedaecdbc05e111.tar.gz |
Add -Wredundant-decls flag
and fix warnings from it
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 606f740b1..08895d406 100644 --- a/configure.ac +++ b/configure.ac @@ -240,11 +240,11 @@ AG_GST_SET_PLUGINDIR dnl define an ERROR_CFLAGS Makefile variable AG_GST_SET_ERROR_CFLAGS($GST_GIT, [ - -Wmissing-declarations -Wmissing-prototypes ]) + -Wmissing-declarations -Wmissing-prototypes -Wredundant-decls ]) dnl define an ERROR_CXXFLAGS Makefile variable AG_GST_SET_ERROR_CXXFLAGS($GST_GIT, [ - -Wmissing-declarations ]) + -Wmissing-declarations -Wredundant-decls ]) dnl define correct level for debugging messages AG_GST_SET_LEVEL_DEFAULT($GST_GIT) |