]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[master] check werror_ok, not with_werror, in the Boost build failure check.
authorJINMEI Tatuya <jinmei@isc.org>
Fri, 28 Dec 2012 21:48:36 +0000 (21:48 +0000)
committerJINMEI Tatuya <jinmei@isc.org>
Fri, 28 Dec 2012 21:48:36 +0000 (21:48 +0000)
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.

configure.ac

index efb8d33d7e0e6b03627eb9455452ea201c803e49..a3fec10ee63c0c3902d1460bdcf63df43965fdb2 100644 (file)
@@ -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