[Libguestfs] [PATCH 1/4] ocaml: Add -Wno-missing-field-initializers to avoid a warning.

Richard W.M. Jones rjones at redhat.com
Wed Jan 18 13:05:19 UTC 2012


From: "Richard W.M. Jones" <rjones at redhat.com>

---
 configure.ac |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/configure.ac b/configure.ac
index fa97479..6e42423 100644
--- a/configure.ac
+++ b/configure.ac
@@ -141,6 +141,10 @@ if test "$gl_gcc_warnings" = yes; then
   # Work around warning in src/inspect.c.  This seems to be a bug in gcc 4.5.1.
   gl_WARN_ADD([-Wno-strict-overflow])
 
+  # Missing field initializers is not a bug in C.  Adding this to $nw above
+  # did not work, so force it here instead.
+  gl_WARN_ADD([-Wno-missing-field-initializers])
+
   gl_WARN_ADD([-fdiagnostics-show-option])
 
   AC_SUBST([WARN_CFLAGS])
-- 
1.7.6




More information about the Libguestfs mailing list