diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-06-29 01:03:48 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-06-29 01:03:48 +0200 |
| commit | 23a1df69210dd0e9902992563363b26e6ee88617 (patch) | |
| tree | 17ac30d3adef2e8a2dc5d2addbbbc0d8c4bc5644 | |
| parent | 6e89e1291f0ec3dcb744c66b1c35af67daba0241 (diff) | |
fixup! Make DCPoMatic compatible with ICU >= 752840-icu
| -rw-r--r-- | wscript | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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) |
