X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=wscript;h=982aa490818b7c7646e3c33efd29e0dd2194e907;hb=390d538dd07554b7e8f8f7dd0500d7f359509828;hp=1f39eb5aca009498daf5ad82ea7ff5a8375fc147;hpb=b8611be3c3c393b6f012ee65eb8a4e12958415a0;p=dcpomatic.git diff --git a/wscript b/wscript index 1f39eb5ac..982aa4908 100644 --- a/wscript +++ b/wscript @@ -26,7 +26,7 @@ import distutils.spawn from waflib import Logs APPNAME = 'dcpomatic' -VERSION = '2.1.52devel' +VERSION = '2.1.54' def options(opt): opt.load('compiler_cxx') @@ -163,6 +163,9 @@ def configure(conf): # libsndfile conf.check_cfg(package='sndfile', args='--cflags --libs', uselib_store='SNDFILE', mandatory=True) + # libsamplerate + conf.check_cfg(package='samplerate', args='--cflags --libs', uselib_store='SAMPLERATE', mandatory=True) + # glib conf.check_cfg(package='glib-2.0', args='--cflags --libs', uselib_store='GLIB', mandatory=True) @@ -239,6 +242,7 @@ def configure(conf): # libxml++ if conf.options.static_xmlpp: conf.env.STLIB_XMLPP = ['xml++-2.6'] + conf.env.LIB_XMLPP = ['xml2'] else: conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='XMLPP', mandatory=True)