Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: dependencies
run: |
sudo apt update
sudo apt install autotools-dev autoconf automake libtool libssl-dev libnss3-dev libmbedtls-dev libgnutls28-dev
sudo apt install autotools-dev autoconf automake libtool libssl-dev libnss3-dev libmbedtls-dev libgnutls28-dev pkg-config make
- name: gen
run: |
autoreconf -ivf
Expand Down
23 changes: 22 additions & 1 deletion INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,29 @@ POSIX
OpenSSL>=0.9.7
doc: (Optional)
doxygen>=1.4
build:
pkg-config
autoconf 2.70 or later

Build:
Build from a released sources tar.gz archive (recommended):
$ ./configure
$ make
$ make install

Build from a git clone:
Ensure you have pkg-config and autotools,

ubuntu 22.04:
$ sudo apt install autotools-dev autoconf automake libtool libssl-dev libnss3-dev libmbedtls-dev libgnutls28-dev pkg-config make
$ autoreconf -ivf
$ ./configure
$ make
$ make install

RockyLinux / Fedora / RHEL:
$ sudo yum install epel-release
$ sudo yum install git pkg-config openssl-devel libtool make autoconf2.7x
$ autoreconf27 -ivf
$ ./configure
$ make
$ make install
Expand Down