bug-wget
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug-wget] TLSv1.1+ and OpenSSL 1.0.0*


From: Velemas Vosak
Subject: [Bug-wget] TLSv1.1+ and OpenSSL 1.0.0*
Date: Mon, 10 Nov 2014 13:12:08 +0300

Hello,

I'm trying to build wget 1.16 with OpenSSL 1.0.0o but I got undefined
symbols:

TLSv1_1_client_method
TLSv1_2_client_method

The culprit is in src/openssl.c in incorrect version number:

#if OPENSSL_VERSION_NUMBER >= 0x*01*001000
    case secure_protocol_tlsv1_1:
      meth = TLSv1_1_client_method ();
      break;
    case secure_protocol_tlsv1_2:
      meth = TLSv1_2_client_method ();
      break;
#endif

OpenSSL 1.0.1o
#define OPENSSL_VERSION_NUMBER       0x*10*0000ffL

OpenSSL 1.0.1j
#define OPENSSL_VERSION_NUMBER  0x*10*0010afL

According to the OpenSSL changelog TLSv1.1+ is added only starting 1.0.1.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]