aboutsummaryrefslogtreecommitdiff
path: root/projects/wget2
diff options
context:
space:
mode:
authorTim Rühsen <tim.ruehsen@gmx.de>2018-11-12 18:09:53 +0100
committerjonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2018-11-12 09:09:53 -0800
commitaa01541a0a090273ab1b7548412f6831600050d4 (patch)
treeee23ba5ac7b6865be234600290149cec75ed6bdc /projects/wget2
parent7de7a3afad7d8dd928f127e368efbc9ebdb4edf1 (diff)
downloadoss-fuzz-aa01541a0a090273ab1b7548412f6831600050d4.tar.gz
[wget2] Build MHD from latest tarball (#1943)
Diffstat (limited to 'projects/wget2')
-rw-r--r--projects/wget2/Dockerfile2
-rwxr-xr-xprojects/wget2/build.sh3
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)