Bump asdcplib-cth for Centos 5 fix.
[libsub.git] / cscript
diff --git a/cscript b/cscript
index e580aaa9ea247c2c3799335f3c6ddbf8c8b76cdc..08c76b35fe8adaef69a63aed0001692d69694613 100644 (file)
--- a/cscript
+++ b/cscript
@@ -1,7 +1,7 @@
 import os
 
 def dependencies(target):
-    return (('libdcp', '19e00ec'),)
+    return (('asdcplib-cth', '5f32ac0'), ('libcxml', 'v0.15.1'))
 
 def build(target, options):
     cmd = './waf configure --prefix=%s' % target.directory
@@ -9,6 +9,8 @@ def build(target, options):
         cmd += ' --static'
         if target.distro == 'centos':
             cmd += ' --disable-tests'
+        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'
     if target.platform == 'windows':
@@ -21,3 +23,8 @@ def make_doxygen(target):
     os.makedirs('build/doc')
     target.command('doxygen')
     return os.path.abspath('build/doc/html')
+
+def test(target):
+    if target.platform != 'windows':
+        target.set('LC_ALL', 'C')
+        target.command('run/tests')