Skip to content
This repository has been archived by the owner on Apr 1, 2024. It is now read-only.

Commit

Permalink
Compile newer libpcap for Linux release (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
philrz authored Apr 27, 2020
1 parent e35de70 commit b10116d
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion brim/release
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,19 @@ case $(uname -s) in
Linux)
goos=linux
logical_cpus=$(nproc)
sudo apt-get -y install bison flex libpcap-dev libssl-dev
sudo apt-get -y install bison flex libssl-dev

# Compile a recent libpcap, since the one we'd get via apt-get is old
# and hits https://github.com/brimsec/zeek/issues/17.
(
cd $(mktemp -d)
wget https://github.com/the-tcpdump-group/libpcap/archive/libpcap-1.9.1.tar.gz
tar xzvf libpcap-1.9.1.tar.gz
cd libpcap-libpcap-1.9.1
./configure
make
sudo make install
)
;;
*)
echo "unknown OS" >&2
Expand Down

0 comments on commit b10116d

Please sign in to comment.