Bump version
[dcpomatic.git] / cscript
diff --git a/cscript b/cscript
index a5abee7f54f03820ec0dcbe47a7df22e5d8957ce..56ce21f26c48a71112ab1edceea9ff139d7fe643 100644 (file)
--- a/cscript
+++ b/cscript
@@ -251,9 +251,9 @@ def dependencies(target):
     else:
         ffmpeg_options = {}
 
-    return (('ffmpeg-cdist', '0e27b2b', ffmpeg_options),
-            ('libdcp', '4852a22'),
-            ('libsub', 'b98c145'))
+    return (('ffmpeg-cdist', 'd0986a9', ffmpeg_options),
+            ('libdcp', 'v1.2.6'),
+            ('libsub', 'v1.1.6'))
 
 def configure_options(target):
     opt = ''
@@ -269,6 +269,8 @@ def configure_options(target):
                 opt += ' --static-boost --static-xmlpp'
             elif target.version == '7':
                 opt += ' --workaround-gssapi --static-xmlpp'
+        if target.distro == 'debian' and target.version == 'unstable':
+            target.append_with_space('CXXFLAGS', '-std=c++11')
 
     return opt
 
@@ -347,7 +349,9 @@ def package_rpm(target, cpu, version):
     else:
         cpu = "i686"
 
+    print 'Looking in %s/RPMS/%s/*.rpm' % (topdir, cpu)
     for p in glob.glob('%s/RPMS/%s/*.rpm' % (topdir, cpu)):
+        print 'found %s' % p
         rpms.append(os.path.abspath(p))
 
     return rpms