diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2016-02-16 15:09:01 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2016-02-16 15:09:01 +0200 |
commit | 734b8bad8fde71f0e1ee197b771ebfd0629be3c4 (patch) | |
tree | 7a89d40c097a107e099fa78ff76f3431aa3d582e /configure.ac | |
parent | 7bd9b2aa5ce49eb0e34a9ffc6fec15622a33a85b (diff) |
vaapi: Fix various compiler warnings and disable -Wredundant-decls for now
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a70d9b12..65dd2fa8 100644 --- a/configure.ac +++ b/configure.ac @@ -837,7 +837,8 @@ dnl make sure it doesn't complain about unused variables if debugging is disable AG_GST_CHECK_GST_DEBUG_DISABLED([NO_WARNINGS="-Wno-unused"], [NO_WARNINGS=""]) dnl define an ERROR_CFLAGS Makefile variable -AG_GST_SET_ERROR_CFLAGS([$FATAL_WARNINGS], [-Wmissing-declarations -Wmissing-prototypes -Wredundant-decls -Wwrite-strings -Wformat-security -Wold-style-definition -Winit-self -Wmissing-include-dirs -Waddress -Wno-multichar -Wnested-externs $NO_WARNINGS]) +dnl FIXME Add -Wredundant-decls again if considered useful and warnings are fixed +AG_GST_SET_ERROR_CFLAGS([$FATAL_WARNINGS], [-Wmissing-declarations -Wmissing-prototypes -Wwrite-strings -Wformat-security -Wold-style-definition -Winit-self -Wmissing-include-dirs -Waddress -Wno-multichar -Wnested-externs $NO_WARNINGS]) dnl define correct level for debugging messages AG_GST_SET_LEVEL_DEFAULT([$GST_GIT]) |