summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
Diffstat (limited to 'cscript')
-rw-r--r--cscript22
1 files changed, 21 insertions, 1 deletions
diff --git a/cscript b/cscript
index 618b2fb9..216a6189 100644
--- a/cscript
+++ b/cscript
@@ -35,7 +35,22 @@ import os
import shutil
def dependencies(target, options):
- return (('libcxml', 'v0.17.6'), ('openjpeg', '925ca5192bb16d4f58a6fddc8b1623eced7f0203'), ('asdcplib', '8a4a2f25cac0c58aac1d4267facab20e5ec3b57f'))
+ deps = [
+ ('libcxml', 'v0.17.11', options),
+ ('openjpeg', 'ad8edaacd54a862940d0a77c41ecda5858b54d6e'),
+ ('asdcplib', 'v1.0.2')
+ ]
+
+ if target.platform == 'linux':
+ ffmpeg_options = { 'shared': False }
+ else:
+ ffmpeg_options = {}
+
+ if target.platform != 'linux' or target.distro != 'arch':
+ # Use distro-provided FFmpeg on Arch, otherwise our own
+ deps.append(('ffmpeg', '1b3378e5361c73076ce736dfa2c7b40bd6f24380', ffmpeg_options))
+
+ return deps
def build(target, options):
cmd = './waf configure --disable-examples --disable-dumpimage --disable-benchmarks --prefix=%s' % target.directory
@@ -44,9 +59,14 @@ def build(target, options):
if target.distro != 'ubuntu' or not target.version in ('16.04', '22.04'):
# We only build tests on Ubuntu 16.04 and 22.04
cmd += ' --disable-tests'
+ if target.distro == 'ubuntu' and target.version == '16.04':
+ cmd += ' --static-boost'
elif target.platform == 'windows':
cmd += f' --target-windows-{target.bits}'
+ if 'c++17' in options and options['c++17']:
+ cmd += ' --c++17'
+
if target.debug:
cmd += ' --enable-debug'