summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)