[svn] commit: r3840 - /trunk/src/lib/nsas/tests/Makefile.am

BIND 10 source code commits bind10-changes at lists.isc.org
Tue Dec 14 16:37:51 UTC 2010


Author: jreed
Date: Tue Dec 14 16:37:51 2010
New Revision: 3840

Log:
Don't have GCC warn about missing initializers.

# Some versions of GCC warn about some versions of Boost regarding
# missing initializer for members in its posix_time.
# https://svn.boost.org/trac/boost/ticket/3477

I also did this in r3835 but for got to to the tests too.

Modified:
    trunk/src/lib/nsas/tests/Makefile.am

Modified: trunk/src/lib/nsas/tests/Makefile.am
==============================================================================
--- trunk/src/lib/nsas/tests/Makefile.am (original)
+++ trunk/src/lib/nsas/tests/Makefile.am Tue Dec 14 16:37:51 2010
@@ -10,6 +10,13 @@
 AM_LDFLAGS += -static
 endif
 AM_LDFLAGS += -lboost_thread
+
+if USE_GXX
+# Some versions of GCC warn about some versions of Boost regarding
+# missing initializer for members in its posix_time.
+# https://svn.boost.org/trac/boost/ticket/3477
+AM_CXXFLAGS += -Wno-missing-field-initializers
+endif
 
 CLEANFILES = *.gcno *.gcda
 




More information about the bind10-changes mailing list