From 3516bed47ca75ef82e3dec6446c5a63b83461df3 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 14 Jul 2021 10:25:16 -0400 Subject: [PATCH] tor: Fix libevent build by installing pkg-config (#6041) It appears that libevent now requires pkg-config, which was not previously installed from Tor's Dockerfile. This change adds pkg-config. Adding this dependency should resolve oss-fuzz issue 36048 (https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=36048) --- projects/tor/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/tor/Dockerfile b/projects/tor/Dockerfile index 37d9753e0..3211c40be 100644 --- a/projects/tor/Dockerfile +++ b/projects/tor/Dockerfile @@ -15,7 +15,7 @@ ############################################################################## FROM gcr.io/oss-fuzz-base/base-builder -RUN apt-get update && apt-get install -y autoconf automake make libtool +RUN apt-get update && apt-get install -y autoconf automake make libtool pkg-config RUN git clone --depth 1 https://git.torproject.org/tor.git RUN git clone --depth 1 https://git.torproject.org/fuzzing-corpora.git tor-fuzz-corpora RUN git clone --depth 1 https://github.com/madler/zlib.git