X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=cscript;h=381300d083963c28c7601d388f3ffac3bc029e2c;hb=67b37548ec0f4397e803660f49bc3ed6c5d91db3;hp=c4ab8f2cf282d9cc2a394a2096e40717740deaab;hpb=5f04dd1beda55ec49bab4c49da6bad5a5a73ef28;p=libsub.git diff --git a/cscript b/cscript index c4ab8f2..381300d 100644 --- a/cscript +++ b/cscript @@ -1,7 +1,7 @@ import os def dependencies(target): - return (('libdcp', '4debca2'),) + return (('libdcp', '689d563'),) def build(target, options): cmd = './waf configure --prefix=%s' % target.directory @@ -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') if target.debug: cmd += ' --enable-debug'