From 727c1aa7da8b325dfa38c8443b1dd356acaf6ec3 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 10 Jul 2025 17:38:02 +0200 Subject: Use newer libraries for Rocky 10. --- cscript | 8 ++++++-- 1 file 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')) -- cgit v1.2.3