From aa01541a0a090273ab1b7548412f6831600050d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Mon, 12 Nov 2018 18:09:53 +0100 Subject: [PATCH] [wget2] Build MHD from latest tarball (#1943) --- projects/wget2/Dockerfile | 2 +- projects/wget2/build.sh | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/projects/wget2/Dockerfile b/projects/wget2/Dockerfile index 0be85a7af..8ccce125a 100644 --- a/projects/wget2/Dockerfile +++ b/projects/wget2/Dockerfile @@ -44,7 +44,7 @@ RUN git clone --depth=1 --recursive https://gitlab.com/libidn/libidn2.git RUN git clone --depth=1 --recursive https://github.com/rockdaboot/libpsl.git RUN git clone --depth=1 https://git.lysator.liu.se/nettle/nettle.git RUN git clone --depth=1 https://gitlab.com/gnutls/gnutls.git -RUN git clone --depth=1 --recursive https://gnunet.org/git/libmicrohttpd.git +RUN wget -O- https://ftp.gnu.org/pub/gnu/libmicrohttpd/libmicrohttpd-latest.tar.gz|tar xz RUN git clone --recursive https://gitlab.com/gnuwget/wget2.git diff --git a/projects/wget2/build.sh b/projects/wget2/build.sh index 972adc3eb..36d097430 100755 --- a/projects/wget2/build.sh +++ b/projects/wget2/build.sh @@ -71,8 +71,7 @@ CFLAGS="$GNUTLS_CFLAGS" \ make -j$(nproc) make install -cd $SRC/libmicrohttpd -./bootstrap +cd $SRC/libmicrohttpd-* LIBS="-lgnutls -lnettle -lhogweed -lidn2 -lunistring" \ ./configure --prefix=$WGET2_DEPS_PATH --disable-doc --disable-examples --disable-shared --enable-static make -j$(nproc)