Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to install openvpn for connection to school server disks
Down here http://openvpn.net/index.php/open-source/downloads.html
2.2 + ipv6 patch or 2.3
Try to install with ./configure && make && make-install
Both ends with:

configure: error: ssl is required but missing

But I've installed openssl. How to do it? (I'm begginer with linux)

share|improve this question

2 Answers

I would first see if the package is available in your distribution's repository. I'm not familiar with Linux Mint, but there should be a graphical tool available, or you could do

apt-get install openvpn

on the command line.

That being said, if you really want to compile it from source, then it seems that the development package is missing (likely named openssl-devel or openssl-dev).

share|improve this answer
Ok, i've installed it from repositories but how to apply ipv6 patch? greenie.net/ipv6/openvpn.html – Lukasik Oct 22 '12 at 17:01
If the patch isn't included in the (standard) openvpn package provided by your distribution you have to compile it from source. Or, download the sources to the openvpn package, add the IPv6 patch, rebuild the binary package and install that -- however, I'm not familiar enough with Mint to tell exactly how to do that. – andri Oct 22 '12 at 23:40

Look if there is a openssl-dev or libssl-devel or something along the lines like this. You are probably missing the development header files.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.