Incompatibility of configure with recent OpenSSL versions

Damien Miller djm at mindrot.org
Thu Oct 30 10:48:27 EST 2014


On Wed, 29 Oct 2014, Bob Rasmussen wrote:

> I am attempting to build OpenSSH on a Linux box. In running ./configure, when
> it tests for OpenSSL compatibility, I get the following:
> 
> checking OpenSSL header version... 009081cf (OpenSSL 0.9.8zc 15 Oct 2014)
> checking OpenSSL library version... configure: error: OpenSSL >= 0.9.8f
> required
> 
> It would appear that 0.9.8zc is in fact >= 0.9.8f. I believe there is a
> problem in how the 009081cf is parsed.

I'm surprised it matched - the test is:

                # Check version is supported.
                case "$ssl_library_ver" in
                        0090[[0-7]]*|009080[[0-5]]*)
                                AC_MSG_ERROR([OpenSSL >= 0.9.8f required])
                                ;;
                        *) ;;
                esac

Are you sure your library matches your header? You can see what configure
found by looking at the 'result' line in config.log that follows
'checking OpenSSL library version'.

I've altered the error message to include the actual version found.

-d


More information about the openssh-unix-dev mailing list