Add libnet1-dev deps to CI and README.md

This commit is contained in:
William Robinet 2020-10-07 10:31:34 +02:00
parent 34e4e55226
commit 02b80dd564
3 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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

View file

@ -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