summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-06-29 01:03:48 +0200
committerCarl Hetherington <cth@carlh.net>2024-06-29 01:03:48 +0200
commit23a1df69210dd0e9902992563363b26e6ee88617 (patch)
tree17ac30d3adef2e8a2dc5d2addbbbc0d8c4bc5644
parent6e89e1291f0ec3dcb744c66b1c35af67daba0241 (diff)
fixup! Make DCPoMatic compatible with ICU >= 752840-icu
-rw-r--r--wscript4
1 files changed, 1 insertions, 3 deletions
diff --git a/wscript b/wscript
index 0427f8b77..d418ab6f4 100644
--- a/wscript
+++ b/wscript
@@ -252,11 +252,9 @@ def configure(conf):
lib=['icuio', 'icui18n', 'icudata', 'icuuc'],
uselib_store='ICU')
- # If ICU version > 75 we need stdc++17, otherwise we stick with stdc++11
+ # For ICU version > 75 we need stdc++17
if conf.check_cfg(modversion='icu-i18n') >= '75':
conf.env.append_value('CXXFLAGS', '-std=c++17')
- else:
- conf.env.append_value('CXXFLAGS', '-std=c++11')
# libsamplerate
conf.check_cfg(package='samplerate', args='--cflags --libs', uselib_store='SAMPLERATE', mandatory=True)