Skip to content

Instantly share code, notes, and snippets.

@yuezk
Last active April 25, 2023 10:14
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save yuezk/ab9a4b87a9fa0182bdb2df41fab5f613 to your computer and use it in GitHub Desktop.
Save yuezk/ab9a4b87a9fa0182bdb2df41fab5f613 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
@luisfranciscocesar
Copy link

./autogen.sh not exist

@yuezk
Copy link
Author

yuezk commented Oct 19, 2020

./autogen.sh not exist

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment