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...)
This commit is contained in:
Matthieu Gautier 2017-01-17 11:39:36 +01:00 committed by Matthieu Gautier
parent a8c4bff709
commit ffe1c2ae5d
1 changed files with 4 additions and 3 deletions

View File

@ -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):