summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-06-13 12:23:37 +0100
committerCarl Hetherington <cth@carlh.net>2016-06-13 12:23:37 +0100
commit283205f4bff717d0f70b5a4464df4ebd3581a51b (patch)
tree5dec6c2d09dda8c5202e1428a6d82a83781936ac /wscript
parenta306df9145d16046e51e8b7ff5222e341e98fdbd (diff)
Use nettle rather then openssl for MD5 digesting.
Diffstat (limited to 'wscript')
-rw-r--r--wscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/wscript b/wscript
index 2387d27cc..cb4e45f84 100644
--- a/wscript
+++ b/wscript
@@ -308,6 +308,9 @@ def configure(conf):
else:
conf.env.LIB_XMLSEC = ['xmlsec1-openssl', 'xmlsec1']
+ # nettle
+ config.check_cfg(package="nettle", args='--cflags --libs', uselib_store='NETTLE', mandatory=True)
+
# FFmpeg
if conf.options.static_ffmpeg:
names = ['avformat', 'avfilter', 'avcodec', 'avutil', 'swscale', 'postproc']