tmux: fix libevent build (#7147)

This commit is contained in:
DavidKorczynski 2022-01-18 13:55:56 +00:00 committed by GitHub
parent 61dac9296d
commit 621e3dcb0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -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