summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cscript8
1 files changed, 6 insertions, 2 deletions
diff --git a/cscript b/cscript
index ab9151fb5..5efa33a7f 100644
--- a/cscript
+++ b/cscript
@@ -441,11 +441,15 @@ def make_spec(filename, version, target, options, requires=None):
def build_with_cpp17(target):
- return target.platform.startswith('osx') or (target.platform == 'linux' and target.distro == 'debian' and target.version == 'unstable')
+ return (
+ target.platform.startswith('osx') or
+ (target.platform == 'linux' and target.distro == 'debian' and target.version == 'unstable') or
+ (target.platform == 'linux' and target.distro == 'rocky' and target.version == '10')
+ )
def dependencies(target, options):
- deps = [('libdcp', 'v1.10.23', {'c++17': build_with_cpp17(target)})]
+ deps = [('libdcp', 'v1.10.24', {'c++17': build_with_cpp17(target)})]
deps.append(('libsub', 'v1.6.53'))
deps.append(('leqm-nrt', '30dcaea1373ac62fba050e02ce5b0c1085797a23'))
deps.append(('rtaudio', 'f619b76'))