mirror of https://github.com/google/oss-fuzz.git
tmux: fix libevent build (#7147)
This commit is contained in:
parent
61dac9296d
commit
621e3dcb0a
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue