From: Kees Monshouwer Date: Thu, 4 May 2017 21:33:18 +0000 (+0200) Subject: detect gcc/g++ 5.4, 7.0 and 7.1 X-Git-Tag: auth-4.0.4-rc1~3^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36389de67bd6bd9c1ff666ccc273129a7cb22e3a;p=thirdparty%2Fpdns.git detect gcc/g++ 5.4, 7.0 and 7.1 --- diff --git a/m4/boost.m4 b/m4/boost.m4 index cc1d0360d0..81696537fa 100644 --- a/m4/boost.m4 +++ b/m4/boost.m4 @@ -1416,6 +1416,10 @@ if test x$boost_cv_inc_path != xno; then # I'm not sure about my test for `il' (be careful: Intel's ICC pre-defines # the same defines as GCC's). for i in \ + _BOOST_mingw_test(7, 1) \ + _BOOST_gcc_test(7, 1) \ + _BOOST_mingw_test(7, 0) \ + _BOOST_gcc_test(7, 0) \ _BOOST_mingw_test(6, 3) \ _BOOST_gcc_test(6, 3) \ _BOOST_mingw_test(6, 2) \ @@ -1424,6 +1428,8 @@ if test x$boost_cv_inc_path != xno; then _BOOST_gcc_test(6, 1) \ _BOOST_mingw_test(6, 0) \ _BOOST_gcc_test(6, 0) \ + _BOOST_mingw_test(5, 4) \ + _BOOST_gcc_test(5, 4) \ _BOOST_mingw_test(5, 3) \ _BOOST_gcc_test(5, 3) \ _BOOST_mingw_test(5, 2) \