Skip to content

Commit

Permalink
[wget2] Add libmicrohttpd as new test suite dependency (google#841)
Browse files Browse the repository at this point in the history
  • Loading branch information
rockdaboot authored and inferno-chromium committed Sep 14, 2017
1 parent 8af0fe1 commit 67924a6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions projects/wget2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,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 git clone --depth=1 --recursive https://gitlab.com/gnuwget/wget2.git

Expand Down
7 changes: 7 additions & 0 deletions projects/wget2/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@ CFLAGS="$GNUTLS_CFLAGS" \
make -j$(nproc)
make install

cd $SRC/libmicrohttpd
./bootstrap
LIBS="-lgnutls -lnettle -lhogweed -lidn2 -lunistring" \
./configure --prefix=$WGET2_DEPS_PATH --disable-doc --disable-examples --disable-shared --enable-static
make -j$(nproc)
make install


# avoid iconv() memleak on Ubuntu 16.04 image (breaks test suite)
export ASAN_OPTIONS=detect_leaks=0
Expand Down

0 comments on commit 67924a6

Please sign in to comment.