From ffe1c2ae5dc0fb1236639782fe3fabde57d3d580 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 17 Jan 2017 11:39:36 +0100 Subject: [PATCH] Use the last version of microhttpd (0.9.46) Else, older version of microhttpd needs plibc and it seems far more complex to cross-compile it (I'm not sure it is still maintained...) --- kiwix-build.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/kiwix-build.py b/kiwix-build.py index 384654a..d871ecc 100755 --- a/kiwix-build.py +++ b/kiwix-build.py @@ -554,10 +554,11 @@ class Pugixml(Dependency, ReleaseDownloadMixin, MesonMixin): class MicroHttpd(Dependency, ReleaseDownloadMixin, MakeMixin): name = "libmicrohttpd" - version = "0.9.19" - archive = Remotefile('libmicrohttpd-0.9.19.tar.gz', - 'dc418c7a595196f09d2f573212a0d794404fa4ac5311fc9588c1e7ad7a90fae6') configure_option = "--enable-shared --enable-static --disable-https --without-libgcrypt --without-libcurl" + version = "0.9.46" + archive = Remotefile('libmicrohttpd-0.9.46.tar.gz', + '06dbd2654f390fa1e8196fe063fc1449a6c2ed65a38199a49bf29ad8a93b8979', + 'http://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.46.tar.gz') class Icu(Dependency, ReleaseDownloadMixin, MakeMixin):