X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=wscript;h=5f7e50c26afa19c3b2bc1b2b3477271675334f2a;hb=4d0c008b7940b4ecad25f97386eb6413e125a094;hp=f0165ce9f05736012ed6771720c1709befb448ab;hpb=232176a69a58a61ed3fcdcd11bf1b868b49347e5;p=dcpomatic.git diff --git a/wscript b/wscript index f0165ce9f..5f7e50c26 100644 --- a/wscript +++ b/wscript @@ -27,7 +27,7 @@ import distutils.spawn from waflib import Logs, Context APPNAME = 'dcpomatic' -VERSION = '2.11.33devel' +VERSION = '2.11.47devel' def options(opt): opt.load('compiler_cxx') @@ -269,6 +269,15 @@ def configure(conf): # libzip conf.check_cfg(package='libzip', args='--cflags --libs', uselib_store='ZIP', mandatory=True) + conf.check_cxx(fragment=""" + #include + int main() { zip_source_t* foo; } + """, + mandatory=False, + msg="Checking for zip_source_t", + uselib="ZIP", + define_name='DCPOMATIC_HAVE_ZIP_SOURCE_T' + ) # fontconfig conf.check_cfg(package='fontconfig', args='--cflags --libs', uselib_store='FONTCONFIG', mandatory=True) @@ -579,8 +588,12 @@ def configure(conf): Logs.pprint('YELLOW', '') +def download_supporters(): + os.system('curl https://dcpomatic.com/supporters.cc > build/supporters.cc') + def build(bld): create_version_cc(VERSION, bld.env.CXXFLAGS) + download_supporters() bld.recurse('src') bld.recurse('graphics')