BIND 10 master, updated. de0694d2f4c7dba909eb922e3fa1a1269d3cbc78 [master] workaround for missing initializer for boost posix_time

BIND 10 source code commits bind10-changes at lists.isc.org
Mon May 16 18:35:19 UTC 2011


The branch, master has been updated
       via  de0694d2f4c7dba909eb922e3fa1a1269d3cbc78 (commit)
      from  7c390c1149baab7bd33e741afcdefb827275d5cd (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit de0694d2f4c7dba909eb922e3fa1a1269d3cbc78
Author: Jeremy C. Reed <jreed at ISC.org>
Date:   Mon May 16 13:33:45 2011 -0500

    [master] workaround for missing initializer for boost posix_time
    
    I did this instead of upgrading boost or changing gcc.
    
    We do the same thing in six other Makefiles.
    
    This will fix failure noticed on NetBSD.

-----------------------------------------------------------------------

Summary of changes:
 src/lib/asiolink/tests/Makefile.am |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/asiolink/tests/Makefile.am b/src/lib/asiolink/tests/Makefile.am
index bfdf7c1..c0d7af6 100644
--- a/src/lib/asiolink/tests/Makefile.am
+++ b/src/lib/asiolink/tests/Makefile.am
@@ -10,6 +10,12 @@ if USE_STATIC_LINK
 AM_LDFLAGS = -static
 endif
 
+# 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
+# But older GCC compilers don't have the flag.
+AM_CXXFLAGS += $(WARNING_NO_MISSING_FIELD_INITIALIZERS_CFLAG)
+
 CLEANFILES = *.gcno *.gcda
 
 TESTS =




More information about the bind10-changes mailing list