X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=wscript;h=18409fe01eab5c1019524858aa36b989c3788c2b;hb=f227d182fa5a829fdeabf9eca8f33da5ce7f4e0d;hp=7195ee6278c5ae645ece4feb90b85ea769839d96;hpb=0e31bf38638a8f2c0b08af01e4214c21452f81f2;p=dcpomatic.git diff --git a/wscript b/wscript index 7195ee627..18409fe01 100644 --- a/wscript +++ b/wscript @@ -26,7 +26,7 @@ import distutils.spawn from waflib import Logs APPNAME = 'dcpomatic' -VERSION = '2.1.50devel' +VERSION = '2.1.52devel' 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)