diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2017-07-28 22:49:13 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-08-28 14:56:57 +0200 |
commit | 583cb03f9122bee70aabc186159384e1fb44ecb5 (patch) | |
tree | c565f20737ec4a21c6a6ab4661e81adba8dfd7d9 /lib/urldata.h | |
parent | 69039fd1fa3e65e2f5737b2a4044dcb8fbabb76d (diff) |
urldata.h: remove support for obsolete PolarSSL version
Since 5017d5ada (polarssl: now require 1.3.0+, 2014-03-17), we require
a newer PolarSSL version. No need to keep code trying to support any
older version.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index b0faa9a35..67f8e69e9 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -104,12 +104,8 @@ #include <polarssl/ssl.h> #include <polarssl/version.h> -#if POLARSSL_VERSION_NUMBER<0x01010000 -#include <polarssl/havege.h> -#else #include <polarssl/entropy.h> #include <polarssl/ctr_drbg.h> -#endif /* POLARSSL_VERSION_NUMBER<0x01010000 */ #endif /* USE_POLARSSL */ |