Try removing the 'primary' receipient's certificate thumbprint from the CertificateTh...
[libdcp.git] / wscript
diff --git a/wscript b/wscript
index 6d286be266ccb93b6979f534045e77f83ea4c31c..b87022f6cd8fc8093be18f2a4306315309f34c6d 100644 (file)
--- a/wscript
+++ b/wscript
@@ -2,9 +2,10 @@ import subprocess
 import os
 import sys
 import distutils.spawn
+from waflib import Logs
 
 APPNAME = 'libdcp'
-VERSION = '1.2.6'
+VERSION = '1.2.8devel'
 API_VERSION = '-1.0'
 
 def options(opt):
@@ -63,12 +64,12 @@ def configure(conf):
                      }
                      """,
                        msg='Checking for library openjpeg', stlib='openjpeg', uselib_store='OPENJPEG', mandatory=True)
-        
+
         conf.env.HAVE_CXML = 1
         conf.env.STLIB_CXML = ['cxml']
     else:
         conf.check_cfg(package='libopenjpeg', args='--cflags --libs', uselib_store='OPENJPEG', mandatory=True)
-        conf.check_cfg(package='libcxml', atleast_version='0.08', args='--cflags --libs', uselib_store='CXML', mandatory=True)
+        conf.check_cfg(package='libcxml', atleast_version='0.14.0', args='--cflags --libs', uselib_store='CXML', mandatory=True)
 
     if conf.options.target_windows:
         boost_lib_suffix = '-mt'
@@ -180,3 +181,6 @@ def create_version_cc(bld, version):
 def post(ctx):
     if ctx.cmd == 'install':
         ctx.exec_command('/sbin/ldconfig')
+
+def tags(bld):
+    os.system('etags src/*.cc src/*.h')