Ignore deprecated declarations for now.
authorCarl Hetherington <cth@carlh.net>
Thu, 2 Jun 2016 00:11:20 +0000 (01:11 +0100)
committerCarl Hetherington <cth@carlh.net>
Thu, 2 Jun 2016 00:11:20 +0000 (01:11 +0100)
wscript

diff --git a/wscript b/wscript
index 64c7e71432b727894c435b93183ce5cd61465b97..ae2e39bcfdb7794190dabaa3b84a8eacb7c87269 100644 (file)
--- a/wscript
+++ b/wscript
@@ -61,6 +61,9 @@ def configure(conf):
     if conf.env.TARGET_OSX:
         conf.env.append_value('CXXFLAGS', ['-Wno-unused-result', '-Wno-unused-parameter', '-Wno-unused-local-typedef'])
 
+    # Disable libxml++ deprecation warnings for now
+    conf.env.append_value('CXXFLAGS', ['-Wno-deprecated-declarations'])
+
     if conf.options.enable_openmp:
         conf.env.append_value('CXXFLAGS', ['-fopenmp', '-DLIBDCP_OPENMP'])
         conf.env.LIB_OPENMP = ['gomp']