Unable to compile ipsec-tools-0.8.1 on FreeBSD 9.0

Hi,
I am trying to compile ipsec-tools-0.8.1 FreeBSD 9.0. But configuration scripts fails on this message:

Code:
checking if --with-openssl option is specified... default
checking openssl version... too old
configure: error: OpenSSL version must be 0.9.8s or higher. Aborting.

But, there is higher version of OpsnSSL:

Code:
[root@i /tmp/ipsec-tools-0.8.1]# pkg_info |fgrep openssl
openssl-1.0.1_6     SSL and crypto library

What can I do to perform successful compilation of ipsec-tools?
 
I would suggest updating to 9.1. FreeBSD 9.0 is going to be end-of-line by the end of March. FreeBSD 9.1 also has a newer openssl:
Code:
~> openssl version
OpenSSL 0.9.8x 10 May 2012
 
There were two openssl binaries:

Code:
[root@i /tmp]# /usr/bin/openssl version
OpenSSL 0.9.8q 2 Dec 2010

Code:
[root@i /tmp]# /usr/local/bin/openssl version
OpenSSL 1.0.1d 5 Feb 2013

Running:

Code:
./configure --with-openssl=/usr/local/

worked like a charm.
 
Back
Top