summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-02-07 00:02:15 +0000
committerCarl Hetherington <cth@carlh.net>2013-02-07 00:02:15 +0000
commit32fc1ddb0ee004d18c36155ddcf4d9b3998a7061 (patch)
tree25fbbe55aa79f5373e3c83f78f692d2acc455a4f /wscript
parentbbb40798ca846edc18a26d396cc9b066c085b8fd (diff)
parent7deb94e3cb9048891664f74d9c8a534ca6a24748 (diff)
Merge.
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 4 insertions, 2 deletions
diff --git a/wscript b/wscript
index 78b5490d9..4bcb0bd11 100644
--- a/wscript
+++ b/wscript
@@ -13,6 +13,8 @@ def options(opt):
opt.add_option('--disable-gui', action='store_true', default = False, help = 'disable building of GUI tools')
opt.add_option('--target-windows', action='store_true', default = False, help = 'set up to do a cross-compile to Windows')
opt.add_option('--static', action='store_true', default = False, help = 'build statically, and link statically to libdcp and FFmpeg')
+ opt.add_option('--magickpp-config', action='store', default='Magick++-config', help = 'path to Magick++-config')
+ opt.add_option('--wx-config', action='store', default='wx-config', help = 'path to wx-config')
def configure(conf):
conf.load('compiler_cxx')
@@ -73,7 +75,7 @@ def configure(conf):
conf.env.STLIB_AVFILTER = ['avfilter', 'swresample']
conf.env.HAVE_AVCODEC = 1
conf.env.STLIB_AVCODEC = ['avcodec']
- conf.env.LIB_AVCODEC = ['x264', 'z']
+ conf.env.LIB_AVCODEC = ['z']
conf.env.HAVE_AVUTIL = 1
conf.env.STLIB_AVUTIL = ['avutil']
conf.env.HAVE_SWSCALE = 1
@@ -91,7 +93,7 @@ def configure(conf):
conf.check_cfg(package = 'glib-2.0', args = '--cflags --libs', uselib_store = 'GLIB', mandatory = True)
if conf.options.target_windows is False:
conf.check_cfg(package = 'liblzma', args = '--cflags --libs', uselib_store = 'LZMA', mandatory = True)
- conf.check_cfg(package = '', path = 'Magick++-config', args = '--cppflags --cxxflags --libs', uselib_store = 'MAGICK', mandatory = True)
+ conf.check_cfg(package = '', path = conf.options.magickpp_config, args = '--cppflags --cxxflags --libs', uselib_store = 'MAGICK', mandatory = True)
if conf.options.static:
conf.check_cc(fragment = """