From 4927fa42d7787818d1fcefde50fd484908b97a6a Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Wed, 25 Oct 2017 10:44:11 -0700 Subject: [PATCH] More Jamfile compiler requirements for tests --- CHANGELOG.md | 1 + test/Jamfile | 9 ++++++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c548aac6..2d32d0bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ Version 127: * Add BOOST_BEAST_NO_POSIX_FADVISE * Version command line option for HTTP client examples +* More Jamfile compiler requirements for tests -------------------------------------------------------------------------------- diff --git a/test/Jamfile b/test/Jamfile index 22b37a4d..f6d60cbb 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -13,10 +13,13 @@ import ../../config/checks/config : requires ; project /boost/beast/test : requirements [ requires - cxx11_variadic_templates - cxx11_template_aliases + cxx11_constexpr cxx11_decltype - cxx11_hdr_tuple ] + cxx11_hdr_tuple + cxx11_sfinae_expr + cxx11_template_aliases + cxx11_variadic_templates + ] ./extern ;