aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Tim Rühsen <tim.ruehsen@gmx.de>2021-05-23 22:55:25 +0200
committerGravatar GitHub <noreply@github.com>2021-05-23 13:55:25 -0700
commit72098484b99edbc591e7dc6d6e1435321e113083 (patch)
tree8b81f27bb367ba0a1650c3cd35fc058afe31d71a
parent67421249e1336eef7ba4116f4c7ccd0cf306cf93 (diff)
[libidn] Fix build (#5818)
-rw-r--r--projects/libidn/Dockerfile2
-rwxr-xr-xprojects/libidn/build.sh8
2 files changed, 5 insertions, 5 deletions
diff --git a/projects/libidn/Dockerfile b/projects/libidn/Dockerfile
index 3bb5413c..e6aebff2 100644
--- a/projects/libidn/Dockerfile
+++ b/projects/libidn/Dockerfile
@@ -22,7 +22,7 @@ RUN apt-get update && apt-get install -y \
autoconf-archive \
automake \
libtool \
- gettext gengetopt curl gperf
+ gettext gengetopt curl gperf wget
RUN git clone --depth=1 https://git.savannah.gnu.org/git/libidn.git
diff --git a/projects/libidn/build.sh b/projects/libidn/build.sh
index b66d8b94..5aa0ea3a 100755
--- a/projects/libidn/build.sh
+++ b/projects/libidn/build.sh
@@ -18,10 +18,10 @@
# avoid iconv() memleak on Ubuntu 16.04 image (breaks test suite)
export ASAN_OPTIONS=detect_leaks=0
-make CFGFLAGS="--enable-static --disable-doc"
-make clean
-make -j1
-make -j$(nproc) check
+./bootstrap
+./configure --enable-static --disable-doc
+make -j
+make -j check
cd fuzz
make oss-fuzz