-
-
Save astrolemonade/35b2c4a0b09c45f388ee9438fe2e6047 to your computer and use it in GitHub Desktop.
Build Openconnect from Source Code on Ubuntu 18.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install dependencies | |
sudo apt install \ | |
build-essential gettext autoconf automake libproxy-dev \ | |
libxml2-dev libtool vpnc-scripts pkg-config zlib1g-dev \ | |
libp11-kit-dev libp11-dev libssl-dev | |
# Build | |
cd openconnect | |
./autogen.sh | |
./configure | |
make && make check | |
sudo make install && sudo ldconfig | |
# Verify | |
openconnect --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment