X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=wscript;h=5b4ec52c00105331520ce8e13fa554da62c283b7;hb=59617eb2230e47b59882c4f9ca6092ce05f53cf1;hp=c5ceb1027d675ab157042e8f2d3706dee365081b;hpb=7836aa40bdde4354b2a816995faa09fa609917cf;p=libdcp.git diff --git a/wscript b/wscript index c5ceb102..5b4ec52c 100644 --- a/wscript +++ b/wscript @@ -2,23 +2,23 @@ import subprocess import os APPNAME = 'libdcp' -VERSION = '0.47pre' +VERSION = '0.54pre' def options(opt): opt.load('compiler_cxx') opt.add_option('--target-windows', action='store_true', default = False, help = 'set up to do a cross-compile to Windows') + opt.add_option('--osx', action='store_true', default = False, help = 'set up to build on OS X') opt.add_option('--enable-debug', action='store_true', default = False, help = 'build with debugging information and without optimisation') - opt.add_option('--static-openjpeg', action='store_true', default = False, help = 'link statically to openjpeg') - opt.add_option('--static-libdcp', action='store_true', default = False, help = 'build libdcp and in-tree dependencies statically') + opt.add_option('--static', action='store_true', default = False, help = 'build libdcp and in-tree dependencies statically, and link statically to openjpeg and cxml') def configure(conf): conf.load('compiler_cxx') - conf.env.append_value('CXXFLAGS', ['-Wall', '-Wextra', '-Wno-unused-result', '-O2', '-D_FILE_OFFSET_BITS=64']) + conf.env.append_value('CXXFLAGS', ['-Wall', '-Wextra', '-O2', '-D_FILE_OFFSET_BITS=64']) conf.env.append_value('CXXFLAGS', ['-DLIBDCP_VERSION="%s"' % VERSION]) conf.env.TARGET_WINDOWS = conf.options.target_windows - conf.env.STATIC_OPENJPEG = conf.options.static_openjpeg - conf.env.STATIC_LIBDCP = conf.options.static_libdcp + conf.env.STATIC = conf.options.static + conf.env.OSX = conf.options.osx conf.env.ENABLE_DEBUG = conf.options.enable_debug if conf.options.target_windows: @@ -26,10 +26,12 @@ def configure(conf): else: conf.env.append_value('CXXFLAGS', '-DLIBDCP_POSIX') + if not conf.options.osx: + conf.env.append_value('CXXFLAGS', ['-Wno-unused-result']) + conf.check_cfg(package = 'openssl', args = '--cflags --libs', uselib_store = 'OPENSSL', mandatory = True) conf.check_cfg(package = 'libxml++-2.6', args = '--cflags --libs', uselib_store = 'LIBXML++', mandatory = True) - if conf.options.static_openjpeg: - + if conf.options.static: conf.check_cc(fragment = """ #include \n #include \n @@ -39,8 +41,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', args = '--cflags --libs', uselib_store = 'CXML', mandatory = True) if conf.options.target_windows: boost_lib_suffix = '-mt'