Openvpn source code installation in Ubuntu depends on the OpenSSL library for encryption and requires installation. LZO library, which is used for data compression. It does not matter if you do not use this library. OpenSSL: Ingress
Install openvpn source code in Ubuntu
OpenVPN depends on the OpenSSL library for encryption and needs to be installed. LZO library, which is used for data compression. It does not matter if you do not use this library.
OpenSSL: http://www.openssl.org/
Http://www.oberhumer.com/opensource/lzo/ of LZO
OpenVPN: http://www.openvpn.net
1 ,. /configure -- with-lzo-headers =/usr/local/include -- with-lzo-lib =/usr/local/lib -- with-ssl-headers =/usr/local/ ssl/include/-- with-ssl-lib =/usr/local/ssl/lib/
If -- with-ssl-headers is not included, the following error occurs:
Configure: checking for OpenSSL Crypto Library and Header files...
Checking openssl/evp. h usability... no
Checking openssl/evp. h presence... no
Checking for openssl/evp. h... no
Configure: error: OpenSSL Crypto headers not found
If -- with-ssl-lib =/usr/local/ssl/lib/is not included, the error is
Configure: checking for OpenSSL Crypto Library and Header files...
Checking openssl/evp. h usability... yes
Checking openssl/evp. h presence... yes
Checking for openssl/evp. h... yes
Checking for EVP_CIPHER_CTX_init in-lcrypto... no
Configure: error: OpenSSL Crypto library not found.
Make; make install