diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-06-29 00:59:35 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-06-29 00:59:35 +0200 |
| commit | e43c1e2d0e57f0f863c41c9e141e68ecda333235 (patch) | |
| tree | 70380004c2500119f204763e80b5f0600c943ed3 | |
| parent | 6ddd3e5bbc1c5668c90595217a4a50b986384049 (diff) | |
fixup! Make DCPoMatic compatible with ICU >= 75
| -rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -253,7 +253,7 @@ def configure(conf): uselib_store='ICU') # If ICU version > 75 we need stdc++17, otherwise we stick with stdc++11 - if (conf.check_cfg(modversion='icu-i18n') >= '75'): + 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') |
