mirror of
https://github.com/adulau/ssldump.git
synced 2024-11-21 17:07:04 +00:00
Add libnet1-dev deps to CI and README.md
This commit is contained in:
parent
34e4e55226
commit
02b80dd564
3 changed files with 4 additions and 4 deletions
2
.github/workflows/clang.yml
vendored
2
.github/workflows/clang.yml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt install clang autoconf libpcap-dev libssl-dev
|
||||
sudo apt install clang autoconf libpcap-dev libssl-dev libnet1-dev
|
||||
- name: autogen
|
||||
run: ./autogen.sh
|
||||
- name: configure
|
||||
|
|
2
.github/workflows/gcc.yml
vendored
2
.github/workflows/gcc.yml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt install autoconf libpcap-dev libssl-dev
|
||||
sudo apt install autoconf libpcap-dev libssl-dev libnet1-dev
|
||||
- name: autogen
|
||||
run: ./autogen.sh
|
||||
- name: configure
|
||||
|
|
|
@ -36,7 +36,7 @@ Additional back-end code available is in the [crl-monitor ](https://github.com/a
|
|||
|
||||
On Debian & Ubuntu:
|
||||
```
|
||||
apt install build-essential autoconf libssl-dev libpcap-dev
|
||||
apt install build-essential autoconf libssl-dev libpcap-dev libnet1-dev
|
||||
./autogen.sh
|
||||
./configure --prefix=/usr/local
|
||||
make
|
||||
|
@ -45,7 +45,7 @@ make
|
|||
|
||||
On Fedora, Centos & RHEL:
|
||||
```
|
||||
dnf install autoconf automake gcc make openssl-devel libpcap-devel
|
||||
dnf install autoconf automake gcc make openssl-devel libpcap-devel libnet1-dev
|
||||
./autogen.sh
|
||||
./configure --prefix=/usr/local
|
||||
make
|
||||
|
|
Loading…
Reference in a new issue