1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: fix FTBFS with ICU 75.1+
Set correct C++ standard.
Author: Laszlo Boszormenyi (GCS) <gcs@debian.org>
Forwarded: no
Last-Update: 2025-03-02
---
Index: xalan/CMakeLists.txt
===================================================================
--- xalan.orig/CMakeLists.txt 2025-03-22 14:02:27.000000000 -0400
+++ xalan/CMakeLists.txt 2025-03-22 14:02:33.000000000 -0400
@@ -34,7 +34,7 @@
# Try C++14, then fall back to C++11 and C++98. Used for feature tests
# for optional features.
-set(CMAKE_CXX_STANDARD 14)
+set(CMAKE_CXX_STANDARD 17)
# Use folders (for IDE project grouping)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|