mirror of
https://github.com/adulau/ssldump.git
synced 2024-11-22 09:27: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
|
- uses: actions/checkout@v2
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt install clang autoconf libpcap-dev libssl-dev
|
sudo apt install clang autoconf libpcap-dev libssl-dev libnet1-dev
|
||||||
- name: autogen
|
- name: autogen
|
||||||
run: ./autogen.sh
|
run: ./autogen.sh
|
||||||
- name: configure
|
- name: configure
|
||||||
|
|
2
.github/workflows/gcc.yml
vendored
2
.github/workflows/gcc.yml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt install autoconf libpcap-dev libssl-dev
|
sudo apt install autoconf libpcap-dev libssl-dev libnet1-dev
|
||||||
- name: autogen
|
- name: autogen
|
||||||
run: ./autogen.sh
|
run: ./autogen.sh
|
||||||
- name: configure
|
- name: configure
|
||||||
|
|
|
@ -36,7 +36,7 @@ Additional back-end code available is in the [crl-monitor ](https://github.com/a
|
||||||
|
|
||||||
On Debian & Ubuntu:
|
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
|
./autogen.sh
|
||||||
./configure --prefix=/usr/local
|
./configure --prefix=/usr/local
|
||||||
make
|
make
|
||||||
|
@ -45,7 +45,7 @@ make
|
||||||
|
|
||||||
On Fedora, Centos & RHEL:
|
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
|
./autogen.sh
|
||||||
./configure --prefix=/usr/local
|
./configure --prefix=/usr/local
|
||||||
make
|
make
|
||||||
|
|
Loading…
Reference in a new issue