From 8fb94b87c535e8ed27ba985d77886198ecb77308 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 6 Nov 2015 21:03:05 +0000 Subject: Try to fix build on Fedora 23. --- cscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cscript') diff --git a/cscript b/cscript index 24f8e156..4f2fd2d4 100644 --- a/cscript +++ b/cscript @@ -9,7 +9,7 @@ def build(target, options): cmd += ' --static' if target.distro == 'centos': cmd += ' --disable-tests' - if target.distro == 'debian' and target.version == 'unstable': + if (target.distro == 'debian' and target.version == 'unstable' or target.distro == 'fedora' and target.version == '23'): target.append_with_space('CXXFLAGS', '-std=c++11') elif target.platform == 'windows': cmd += ' --target-windows --disable-tests' -- cgit v1.2.3 From dc31f6d229c0b0c3d953022594c8bb713ca5d72e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 8 Nov 2015 19:53:24 +0000 Subject: Bump libcxml. --- cscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cscript') diff --git a/cscript b/cscript index 4f2fd2d4..6a59c576 100644 --- a/cscript +++ b/cscript @@ -1,7 +1,7 @@ import os def dependencies(target): - return (('libcxml', 'v0.14.0'), ('openjpeg-cdist', '5d8bffd')) + return (('libcxml', '5f7703a'), ('openjpeg-cdist', '5d8bffd')) def build(target, options): cmd = './waf configure --disable-examples --prefix=%s' % target.directory -- cgit v1.2.3