From 621e3dcb0ad9c620259bb70822a5da270d8575e5 Mon Sep 17 00:00:00 2001 From: DavidKorczynski Date: Tue, 18 Jan 2022 13:55:56 +0000 Subject: [PATCH] tmux: fix libevent build (#7147) --- projects/tmux/Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/projects/tmux/Dockerfile b/projects/tmux/Dockerfile index 80f49b91c..a6ef1b3c2 100644 --- a/projects/tmux/Dockerfile +++ b/projects/tmux/Dockerfile @@ -19,8 +19,11 @@ RUN apt-get update && apt-get install -y autoconf automake bison pkg-config \ ncurses-dev libtool RUN git clone https://github.com/libevent/libevent.git && \ - cd libevent && ./autogen.sh && ./configure --disable-openssl --disable-shared && \ - make clean && make all && make install + cd libevent && \ + mkdir build && \ + cd build && \ + cmake -DEVENT__DISABLE_MBEDTLS=ON -DEVENT__DISABLE_OPENSSL=ON -DEVENT__LIBRARY_TYPE=STATIC ../ && \ + make && make install RUN git clone --depth 1 https://github.com/tmux/tmux.git RUN git clone --depth 1 https://github.com/tmux/tmux-fuzzing-corpus.git