summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-12-04 22:57:59 +0100
committerCarl Hetherington <cth@carlh.net>2022-12-04 22:57:59 +0100
commitb995947a86a583a44bbe667e9bbd031296bf7e88 (patch)
tree6c2018c87d69665a488c085becaddd4647c7cf94 /cscript
parent32360aedc97a0cc9acc1b1c10d2e8351dcacb549 (diff)
Remove support for building with OpenJPEG 1.x.
Diffstat (limited to 'cscript')
-rw-r--r--cscript11
1 files changed, 1 insertions, 10 deletions
diff --git a/cscript b/cscript
index b459ac0c..5750c937 100644
--- a/cscript
+++ b/cscript
@@ -34,14 +34,8 @@
import os
import shutil
-option_defaults = { 'jpeg': 'oj2' }
-
def dependencies(target, options):
- libcxml = ('libcxml', 'v0.17.4')
- if options['jpeg'] == 'oj1':
- return (libcxml, ('openjpeg', 'f166257'), ('asdcplib', '825e47522e3ae179a7820b2665c9de299b34494b'))
- else:
- return (libcxml, ('openjpeg', 'a1403c2'), ('asdcplib', '825e47522e3ae179a7820b2665c9de299b34494b'))
+ return (('libcxml', 'v0.17.4'), ('openjpeg', 'a1403c2'), ('asdcplib', '825e47522e3ae179a7820b2665c9de299b34494b'))
def build(target, options):
cmd = './waf configure --disable-examples --disable-benchmarks --prefix=%s' % target.directory
@@ -53,9 +47,6 @@ def build(target, options):
cmd += ' --disable-tests'
elif target.platform == 'windows':
cmd += f' --target-windows-{target.bits}'
- if target.version == 'xp':
- # OpenJPEG 1.x is inexplicably faster on Windows XP; see DCP-o-matic bug #771
- cmd += ' --jpeg=oj1'
if target.debug:
cmd += ' --enable-debug'