File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ FROM gcr.io/oss-fuzz-base/base-builder
18
18
RUN apt-get update && apt-get install -y \
19
19
make \
20
20
pkg-config \
21
- gettext \
22
21
autogen \
23
22
autopoint \
24
23
autoconf \
@@ -40,6 +39,14 @@ RUN apt-get update && apt-get install -y \
40
39
libtasn1-bin \
41
40
libz-dev
42
41
42
+ # Get a more recent version of gettext as the one in the package
43
+ # manager is too old for wget2.
44
+ RUN wget https://ftp.gnu.org/pub/gnu/gettext/gettext-0.22.2.tar.gz && \
45
+ tar -xzf ./gettext-0.22.2.tar.gz && \
46
+ cd gettext-0.22.2 && \
47
+ ./configure && \
48
+ make && \
49
+ make install
43
50
ENV GNULIB_TOOL $SRC/gnulib/gnulib-tool
44
51
ENV GNULIB_SRCDIR $SRC/gnulib
45
52
RUN git clone git://git.savannah.gnu.org/gnulib.git
@@ -50,6 +57,11 @@ RUN git clone --depth=1 https://git.lysator.liu.se/nettle/nettle.git
50
57
RUN git clone --depth=1 https://gitlab.com/gnutls/gnutls.git
51
58
RUN wget -O- https://ftp.gnu.org/pub/gnu/libmicrohttpd/libmicrohttpd-latest.tar.gz | tar xz
52
59
60
+ # Get a more recent version of automake as the one in the package
61
+ # manager is too old for wget2.
62
+ RUN curl -LO http://mirrors.kernel.org/ubuntu/pool/main/a/automake-1.16/automake_1.16.5-1.3_all.deb && \
63
+ apt install ./automake_1.16.5-1.3_all.deb
64
+
53
65
RUN git clone --recursive https://gitlab.com/gnuwget/wget2.git
54
66
55
67
WORKDIR wget2
You can’t perform that action at this time.
0 commit comments