Last active
March 8, 2025 07:45
-
-
Save yuezk/ab9a4b87a9fa0182bdb2df41fab5f613 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
What's your working directory?
./autogen.sh
exists under the root directory of the openconnect repo.https://github.com/openconnect/openconnect/blob/master/autogen.sh