i18n fuzzy fixes.
[dcpomatic.git] / cscript
diff --git a/cscript b/cscript
index 2ba67f157cc6d1b63394de3c98f916f79d958cb0..180c27bd13ad0c2cef92651246642d51135c040f 100644 (file)
--- a/cscript
+++ b/cscript
@@ -290,8 +290,8 @@ def dependencies(target):
         ffmpeg_options = {}
 
     return (('ffmpeg-cdist', '5fce90f', ffmpeg_options),
-            ('libdcp', '8b72edd'),
-            ('libsub', '05c6345'),
+            ('libdcp', '1daf081'),
+            ('libsub', '567a711'),
             ('rtaudio-cdist', None))
 
 def configure_options(target):
@@ -308,6 +308,11 @@ def configure_options(target):
                 opt += ' --static-boost --static-xmlpp'
             elif target.version == '7':
                 opt += ' --workaround-gssapi'
+                # Centos 7 ships with glibmm 2.50.0 which requires C++11
+                # but its compiler (gcc 4.8.5) defaults to C++97.  Go figure.
+                # I worry that this will cause ABI problems but I don't have
+                # a better solution.
+                opt += ' --force-cpp11'
 
     # Build Windows debug versions with static linking as I think gdb works better then
     if target.debug and target.platform == 'windows':