mirror of https://github.com/google/oss-fuzz.git
suricata: uses pcre2 release from github (#6787)
This commit is contained in:
parent
3a50fc6dac
commit
2881c2e370
|
@ -18,7 +18,7 @@ FROM gcr.io/oss-fuzz-base/base-builder-rust
|
|||
RUN apt-get update && apt-get install -y build-essential autoconf automake libtool make pkg-config python flex bison zlib1g-dev libpcre3-dev cmake tshark
|
||||
|
||||
# TODO libmagic, liblzma and other optional libraries
|
||||
ADD https://ftp.pcre.org/pub/pcre/pcre2-10.36.tar.gz pcre2-10.36.tar.gz
|
||||
ADD https://github.com/PhilipHazel/pcre2/releases/download/pcre2-10.39/pcre2-10.39.tar.gz pcre2-10.39.tar.gz
|
||||
ADD https://www.tcpdump.org/release/libpcap-1.9.1.tar.gz libpcap-1.9.1.tar.gz
|
||||
ADD http://www.digip.org/jansson/releases/jansson-2.12.tar.gz jansson-2.12.tar.gz
|
||||
RUN git clone --depth=1 https://github.com/yaml/libyaml
|
||||
|
|
|
@ -17,8 +17,8 @@
|
|||
|
||||
# build dependencies statically
|
||||
(
|
||||
tar -xvzf pcre2-10.36.tar.gz
|
||||
cd pcre2-10.36
|
||||
tar -xvzf pcre2-10.39.tar.gz
|
||||
cd pcre2-10.39
|
||||
./configure --disable-shared
|
||||
make -j$(nproc) clean
|
||||
make -j$(nproc) all
|
||||
|
|
Loading…
Reference in New Issue