Commit 4f169a02 authored by Nick Mathewson's avatar Nick Mathewson 🦀
Browse files

Merge branch 'no_openssl_100'

parents 80e2896d 850ec1e2
Loading
Loading
Loading
Loading

changes/no_openssl_100

0 → 100644
+4 −0
Original line number Diff line number Diff line
  o Required libraries:
    - When building with OpenSSL, Tor now requires version 1.0.1 or later.
      OpenSSL 1.0.0 and earlier are no longer supported by the openssl team,
      and should not be used. Closes ticket 20303.
+2 −2
Original line number Diff line number Diff line
@@ -614,12 +614,12 @@ CPPFLAGS="$TOR_CPPFLAGS_openssl $CPPFLAGS"

AC_TRY_COMPILE([
#include <openssl/opensslv.h>
#if OPENSSL_VERSION_NUMBER < 0x1000000fL
#if !defined(LIBRESSL_VERSION_NUMBER) && OPENSSL_VERSION_NUMBER < 0x1000100fL
#error "too old"
#endif
   ], [],
   [ : ],
   [ AC_ERROR([OpenSSL is too old. We require 1.0.0 or later. You can specify a path to a newer one with --with-openssl-dir.]) ])
   [ AC_ERROR([OpenSSL is too old. We require 1.0.1 or later. You can specify a path to a newer one with --with-openssl-dir.]) ])

AC_TRY_COMPILE([
#include <openssl/opensslv.h>
+3 −2
Original line number Diff line number Diff line
@@ -15,8 +15,9 @@
 * \brief compatability definitions for working with different openssl forks
 **/

#if OPENSSL_VERSION_NUMBER < OPENSSL_V_SERIES(1,0,0)
#error "We require OpenSSL >= 1.0.0"
#if !defined(LIBRESSL_VERSION_NUMBER) && \
  OPENSSL_VERSION_NUMBER < OPENSSL_V_SERIES(1,0,1)
#error "We require OpenSSL >= 1.0.1"
#endif

#if OPENSSL_VERSION_NUMBER >= OPENSSL_V_SERIES(1,1,0) && \