Enable building tests on macOS.
[libdcp.git] / cscript
diff --git a/cscript b/cscript
index 4efd84b0f71ecb119f50709d0643b6ba66ea3e78..d2b0474faa8daded7e2f3a32dafe21a4eefc1392 100644 (file)
--- a/cscript
+++ b/cscript
@@ -37,7 +37,7 @@ import shutil
 option_defaults = { 'force-cpp11': False, 'jpeg': 'oj2' }
 
 def dependencies(target, options):
-    libcxml = ('libcxml', '2b8b650', {'force-cpp11': options['force-cpp11']})
+    libcxml = ('libcxml', 'c333199', {'force-cpp11': options['force-cpp11']})
     if (target.platform == 'windows' and target.version == 'xp') or options['jpeg'] == 'oj1':
         return (libcxml, ('openjpeg', 'f166257'), ('asdcplib', 'carl'))
     else:
@@ -56,8 +56,6 @@ def build(target, options):
         if target.version == 'xp':
             # OpenJPEG 1.x is inexplicably faster on Windows XP; see DCP-o-matic bug #771
             cmd += ' --jpeg=oj1'
-    elif target.platform == 'osx':
-        cmd += ' --disable-tests'
 
     if target.debug:
         cmd += ' --enable-debug'