Skip to content

Instantly share code, notes, and snippets.

@astrolemonade
Forked from yuezk/build-openconnect.sh
Created April 25, 2023 10:14
Show Gist options
  • Save astrolemonade/35b2c4a0b09c45f388ee9438fe2e6047 to your computer and use it in GitHub Desktop.
Save astrolemonade/35b2c4a0b09c45f388ee9438fe2e6047 to your computer and use it in GitHub Desktop.
Build Openconnect from Source Code on Ubuntu 18.04
# 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