BIND 10 master, updated. 2aa422106dd081138c633ad2f9a3ede0ebdbd94a [master] check werror_ok, not with_werror, in the Boost build failure check.
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Dec 28 21:52:10 UTC 2012
The branch, master has been updated
via 2aa422106dd081138c633ad2f9a3ede0ebdbd94a (commit)
from 14220fefc56f7970d6b8bfd316c7ee234dd416d4 (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 2aa422106dd081138c633ad2f9a3ede0ebdbd94a
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Fri Dec 28 21:48:36 2012 +0000
[master] check werror_ok, not with_werror, in the Boost build failure check.
this is necessary to keep the previous behavior for FreeBSD where -Werror
is automatically disabled due to other bug of the compiler.
discussed on jabber, not seen a clear go, but I'm committing it at my
discretion to fix the buildbot errors. I've confirmed the behavior on
multiple FreeBSD boxes.
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
-----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index efb8d33..a3fec10 100644
--- a/configure.ac
+++ b/configure.ac
@@ -848,7 +848,7 @@ fi
# There's a known bug in FreeBSD ports for Boost that would trigger a false
# warning in build with g++ and -Werror (we exclude clang++ explicitly to
# avoid unexpected false positives).
-if test "$BOOST_NUMERIC_CAST_WOULDFAIL" = "yes" -a X"$with_werror" = X1 -a $CLANGPP = "no"; then
+if test "$BOOST_NUMERIC_CAST_WOULDFAIL" = "yes" -a X"$werror_ok" = X1 -a $CLANGPP = "no"; then
AC_MSG_ERROR([Failed to compile a required header file. If you are using FreeBSD and Boost installed via ports, retry with specifying --without-werror. See the ChangeLog entry for Trac no. 1991 for more details.])
fi
More information about the bind10-changes
mailing list