diff --git a/config/Jamfile.v2 b/config/Jamfile.v2 index 1cbfcda93b..77aca7c2e3 100644 --- a/config/Jamfile.v2 +++ b/config/Jamfile.v2 @@ -36,7 +36,6 @@ obj has_gmp : has_gmp.cpp : obj is_ci_sanitizer_run : is_ci_sanitizer_run.cpp ; obj is_ci_standalone_run : is_ci_standalone_run.cpp ; obj is_cygwin_run : is_cygwin_run.cpp ; -obj is_MSVC1930_or_newer_run : is_MSVC1930_or_newer.cpp ; explicit has_long_double_support ; explicit has_mpfr_class ; @@ -53,4 +52,3 @@ explicit has_fftw3 ; explicit is_ci_sanitizer_run ; explicit is_ci_standalone_run ; explicit is_cygwin_run ; -explicit is_MSVC1930_or_newer_run ; diff --git a/config/is_MSVC1930_or_newer.cpp b/config/is_MSVC1930_or_newer.cpp deleted file mode 100644 index 3c0d77a301..0000000000 --- a/config/is_MSVC1930_or_newer.cpp +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright Matt Borland 2022. -// Use, modification and distribution are subject to the -// Boost Software License, Version 1.0. (See accompanying file -// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -// -// The following change was released in VS 2022 17.1 Preview 1 and no longer allows compilation of *.c files -// https://github.com/microsoft/STL/pull/2148 - -#if !defined(_MSC_VER) || (_MSC_VER < 1930) -# error "MSVC1930 or newer run is NOT in effect". -#endif - -int main() -{ - return 0; -} diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 3ce0c4ade8..d4a75556db 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -933,7 +933,6 @@ test-suite misc : ../build//boost_math_c99f ../../test/build//boost_unit_test_framework : : : #requirements - [ check-target-builds ../config//is_MSVC1930_or_newer_run "MSVC1930 or newer run" : no ] : test_tr1_c ] @@ -945,7 +944,6 @@ test-suite misc : : : : TEST_LD=1 [ check-target-builds ../config//has_long_double_support "long double support" : : no ] - [ check-target-builds ../config//is_MSVC1930_or_newer_run "MSVC1930 or newer run" : no ] : test_tr1_c_long_double ]