summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-01-23 09:49:29 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-23 09:49:29 +0100
commitac98ff177ee2912cc51dc99595cd4e80a46976f9 (patch)
treec5e0fa5afc7dab4c08817bb3b02b1024bacf1e2e
parenta65c9be7a5c455111b44b24690fe162413268b9f (diff)
Remove Windows XP support and pin asdcplib version.
-rw-r--r--cscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/cscript b/cscript
index ba4a7e4c..89ecb5fd 100644
--- a/cscript
+++ b/cscript
@@ -38,10 +38,10 @@ option_defaults = { 'jpeg': 'oj2' }
def dependencies(target, options):
libcxml = ('libcxml', 'v0.17.0')
- if (target.platform == 'windows' and target.version == 'xp') or options['jpeg'] == 'oj1':
- return (libcxml, ('openjpeg', 'f166257'), ('asdcplib', 'carl'))
+ if options['jpeg'] == 'oj1':
+ return (libcxml, ('openjpeg', 'f166257'), ('asdcplib', 'bb09615'))
else:
- return (libcxml, ('openjpeg', '585b84a'), ('asdcplib', 'carl'))
+ return (libcxml, ('openjpeg', '585b84a'), ('asdcplib', 'bb09615'))
def build(target, options):
cmd = './waf configure --disable-examples --disable-benchmarks --prefix=%s' % target.directory