science/InsightToolkit501: Fix build with CMake 3.29

Support for the Comeau compiler was removed.

PR:		278693
main
Jason E. Hale 2024-05-18 10:45:28 -04:00
parent 656401a10b
commit 2204bdcd43
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
Fix build with CMake >= 3.29.0. Support for the Comeau compiler was removed.
--- Modules/ThirdParty/VNL/src/vxl/vcl/tests/test_preprocessor.cxx.orig 2022-11-24 13:15:41 UTC
+++ Modules/ThirdParty/VNL/src/vxl/vcl/tests/test_preprocessor.cxx
@@ -9,8 +9,7 @@ int test_preprocessor_main(int /*argc*/,char* /*argv*/
int test_preprocessor_main(int /*argc*/,char* /*argv*/[])
{
constexpr unsigned compiler_count
- = VXL_COMPILER_IS_Comeau
- + VXL_COMPILER_IS_Intel
+ = VXL_COMPILER_IS_Intel
+ VXL_COMPILER_IS_PathScale
+ VXL_COMPILER_IS_Embarcadero
+ VXL_COMPILER_IS_Borland