diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-02 14:28:12 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-04-02 14:28:12 +0200 |
| commit | 257e9ee39919e16d135cb100006601ba77303b82 (patch) | |
| tree | 434765d6a49b1f71f35abcfee4c3bdb8ec9e2878 /cscript | |
| parent | 4221e40199086dcab8e901f581194a0a8fd9806c (diff) | |
Pass force-cpp11 down to libcxml.
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -37,10 +37,11 @@ import shutil option_defaults = { 'force-cpp11': False, 'jpeg': 'oj2' } def dependencies(target, options): + libcxml = ('libcxml', '0d18df4', {'force-cpp11': options['force-cpp11']}) if (target.platform == 'windows' and target.version == 'xp') or options['jpeg'] == 'oj1': - return (('libcxml', '0d18df4'), ('openjpeg', 'f166257'), ('asdcplib', 'carl')) + return (libcxml, ('openjpeg', 'f166257'), ('asdcplib', 'carl')) else: - return (('libcxml', '0d18df4'), ('openjpeg', '956af06'), ('asdcplib', 'carl')) + return (libcxml, ('openjpeg', '956af06'), ('asdcplib', 'carl')) def build(target, options): cmd = './waf configure --disable-examples --prefix=%s' % target.directory |
