summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorDaniel P. Berrange <berrange@redhat.com>2008-03-05 18:24:16 -0500
committerDaniel P. Berrange <berrange@redhat.com>2008-03-05 18:24:16 -0500
commit0154dca5b9ab76f37f666923fc4dc52409d50d28 (patch)
tree1e8899ac9d1ee709958ca17020593fb43f8fbfff /acinclude.m4
parent12a72a27d9c70b96ce9ecff089510fa856dcc9b5 (diff)
Kill automake portability warnings. Use a config.h Cleanup misc build issues. Build with fatal compile warnings
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m43
1 files changed, 2 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index b37cf34..73b5a7b 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -33,7 +33,8 @@ AC_DEFUN([VIRT_VIEWER_COMPILE_WARNINGS],[
maximum|error)
try_compiler_flags="$try_compiler_flags -Wall -Wmissing-prototypes -std=c99 -Wnested-externs -Wpointer-arith"
try_compiler_flags="$try_compiler_flags -Wextra -Wshadow -Wcast-align -Wwrite-strings -Waggregate-return"
- try_compiler_flags="$try_compiler_flags -Wstrict-prototypes -Winline -Wredundant-decls -Wno-sign-compare"
+ # Removed -Wstrict-prototypes to avoid GTK bug
+ try_compiler_flags="$try_compiler_flags -Winline -Wredundant-decls -Wno-sign-compare"
if test "$enable_compile_warnings" = "error" ; then
try_compiler_flags="$try_compiler_flags -Werror"
fi