summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-05-23 17:18:57 +0100
committerCarl Hetherington <cth@carlh.net>2016-05-23 17:18:57 +0100
commit2b2823284b07354d1f480e54aded1aba45716cf5 (patch)
treed8607e3ccea14a695a9317223a4cee08cc7d6947 /wscript
parentd4440e0112f3cc4500208da4734f3c3ba9cba03a (diff)
Be stricter about curl version.
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 121fa8d80..e31299883 100644
--- a/wscript
+++ b/wscript
@@ -160,7 +160,7 @@ def configure(conf):
conf.env.STLIB_CURL = ['curl']
conf.env.LIB_CURL = ['ssh2', 'idn']
else:
- conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
+ conf.check_cfg(package='libcurl', args='--cflags --libs', atleast_version='7.19.1', uselib_store='CURL', mandatory=True)
# libicu
if conf.check_cfg(package='icu-i18n', args='--cflags --libs', uselib_store='ICU', mandatory=False) is None: