summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-07-10 17:38:02 +0200
committerCarl Hetherington <cth@carlh.net>2025-07-10 20:31:56 +0200
commit727c1aa7da8b325dfa38c8443b1dd356acaf6ec3 (patch)
treeb8d5d44e2cb7bb895516b2376f77f6bf174a5fa6 /cscript
parent1ac44bc2fb0dc3de670d9cb3c2c29268803612fa (diff)
Use newer libraries for Rocky 10.
Diffstat (limited to 'cscript')
-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'))