Building 2.3.2 from Source (Linux)

This forum is for all inquiries relating to the installation of OpenVPN from source and with binaries.

Moderators: TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech

Forum rules
Please visit (and READ) the OpenVPN HowTo http://openvpn.net/howto prior to asking any questions in here!
Post Reply
chogger
OpenVpn Newbie
Posts: 1
Joined: Tue Feb 25, 2014 5:55 pm

Building 2.3.2 from Source (Linux)

Post by chogger » Tue Feb 25, 2014 5:58 pm

Hello everyone, my ./configure Script is saying that ssl is required but missing. In Version 2.x i was able to set the path to ssl using the --with Option but this is not working anymore. Here ist what I did

Code: Select all

sudo mkdir /work
cd /work
sudo wget http://www.openssl.org/source/openssl-1.0.1f.tar.gz
sudo tar xzvf openssl-1.0.1f.tar.gz
cd openssl-1.0.1f
sudo ./config
sudo make
sudo make install
sudo make clean
cd /work
sudo wget http://www.oberhumer.com/opensource/lzo/download/lzo-2.06.tar.gz
sudo tar xzvf lzo-2.06.tar.gz
cd lzo-2.06
sudo ./configure
sudo make
sudo make install
sudo make clean
cd /work
sudo wget http://swupdate.openvpn.org/community/releases/openvpn-2.3.2.tar.gz
sudo tar xzvf openvpn-2.3.2.tar.gz
cd openvpn-2.3.2
sudo ./configure
Is there a new way how to point open vpn to the open ssl directory?

Post Reply