summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-11-06 22:37:29 +0000
committerCarl Hetherington <cth@carlh.net>2014-11-06 22:37:29 +0000
commitfa737edf632ab952ab6f2f70d4af61cca9a1da63 (patch)
treee1b5420f74aa9c74da4d15b27de5acb42ef2da9e /wscript
parente4c1072a393a0bcc3dec7070f26915a1878392ab (diff)
Use in-tree libquickmail; send metadata.xml too; fix basic build errors with quickmail.
Diffstat (limited to 'wscript')
-rw-r--r--wscript17
1 files changed, 0 insertions, 17 deletions
diff --git a/wscript b/wscript
index 18b23df46..4b1f78e4b 100644
--- a/wscript
+++ b/wscript
@@ -158,17 +158,6 @@ def static_boost(conf, lib_suffix):
conf.env.STLIB_BOOST_DATETIME = ['boost_date_time%s' % lib_suffix, 'boost_system%s' % lib_suffix]
conf.env.STLIB_BOOST_SIGNALS2 = ['boost_signals2']
-def dynamic_quickmail(conf):
- conf.check_cxx(fragment="""
- #include <quickmail.h>
- int main(void) { quickmail_initialize (); }
- """,
- mandatory=True,
- msg='Checking for libquickmail',
- libpath='/usr/local/lib',
- lib=['quickmail', 'curl'],
- uselib_store='QUICKMAIL')
-
def configure(conf):
conf.load('compiler_cxx')
if conf.options.target_windows:
@@ -271,7 +260,6 @@ def configure(conf):
conf.env.STLIB_CXML = ['cxml']
conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='XMLPP', mandatory=True)
conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
- conf.env.STLIB_QUICKMAIL = ['quickmail']
static_ffmpeg(conf)
static_openjpeg(conf)
static_sub(conf)
@@ -285,8 +273,6 @@ def configure(conf):
conf.check_cfg(package='libcurl', args='--cflags --libs-only-L', uselib_store='CURL', mandatory=True)
conf.env.STLIB_CURL = ['curl']
conf.env.LIB_CURL = ['ssh2', 'idn']
- conf.env.STLIB_QUICKMAIL = ['quickmail', 'curl']
- conf.env.LIB_QUICKMAIL = ['ssh2', 'idn']
static_ffmpeg(conf)
static_openjpeg(conf)
static_sub(conf)
@@ -298,7 +284,6 @@ def configure(conf):
conf.check_cfg(package='libcxml', atleast_version='0.08', args='--cflags', uselib_store='CXML', mandatory=True)
conf.env.STLIB_CXML = ['cxml']
conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
- conf.env.STLIB_QUICKMAIL = ['quickmail']
conf.env.LIB_SSH = ['gssapi_krb5']
conf.env.LIB_XMLPP = ['xml2']
conf.env.LIB_XMLSEC = ['ltdl']
@@ -318,7 +303,6 @@ def configure(conf):
libpath='/usr/local/lib',
lib=['boost_locale%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
uselib_store='BOOST_LOCALE')
- dynamic_quickmail(conf)
dynamic_boost(conf, boost_lib_suffix, boost_thread)
dynamic_ffmpeg(conf)
dynamic_openjpeg(conf)
@@ -331,7 +315,6 @@ def configure(conf):
conf.check_cfg(package='libcxml', atleast_version='0.08', args='--cflags --libs', uselib_store='CXML', mandatory=True)
conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='XMLPP', mandatory=True)
conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
- dynamic_quickmail(conf)
dynamic_boost(conf, boost_lib_suffix, boost_thread)
dynamic_ffmpeg(conf)
dynamic_dcp(conf)