summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-05-29 10:18:37 +0100
committerCarl Hetherington <cth@carlh.net>2013-05-29 10:18:37 +0100
commit96f8d3ab8b59cbcaf7b8b78f958dd7c10c9aada2 (patch)
tree81d2b9507d5d7a77c828a89ad5e3b59e819d0e00 /wscript
parentd77d0d1bd972f6343752ca45a3d5e0a0924e2d50 (diff)
Try to fix compile on OS X
Diffstat (limited to 'wscript')
-rw-r--r--wscript7
1 files changed, 6 insertions, 1 deletions
diff --git a/wscript b/wscript
index e8de8385..0bb36223 100644
--- a/wscript
+++ b/wscript
@@ -7,16 +7,18 @@ VERSION = '0.51pre'
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')
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.OSX = conf.options.osx
conf.env.STATIC_OPENJPEG = conf.options.static_openjpeg
conf.env.STATIC_LIBDCP = conf.options.static_libdcp
conf.env.ENABLE_DEBUG = conf.options.enable_debug
@@ -26,6 +28,9 @@ 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: