diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2016-11-23 12:45:46 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2016-11-23 12:45:46 +0000 |
commit | a8713d15f4d56c9054b5d6a952f5c3613f04959a (patch) | |
tree | 9f8db44177ed46a64b46576a24dfdf8ada114376 /devel/boost-libs/files/patch-bae401b1eb0594932c4e780d496cba852c23b75f | |
parent | Add ttyd: (diff) |
devel/boost-*: update to 1.62.0
- Enable `long double` C99 math usage
- Switch 9.x back to building with GCC
Changes: http://www.boost.org/users/history/
PR: 199601
Submitted by: Chen Xu, bapt, amdmi3, truckman (based on)
Reviewed by: rakuco (kde) (earlier version)
Exp-run by: antoine (3 tries), truckman (consumers only, earlier versions)
Approved by: bapt (office)
Diffstat (limited to 'devel/boost-libs/files/patch-bae401b1eb0594932c4e780d496cba852c23b75f')
-rw-r--r-- | devel/boost-libs/files/patch-bae401b1eb0594932c4e780d496cba852c23b75f | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/devel/boost-libs/files/patch-bae401b1eb0594932c4e780d496cba852c23b75f b/devel/boost-libs/files/patch-bae401b1eb0594932c4e780d496cba852c23b75f deleted file mode 100644 index 1fc8e3db0eff..000000000000 --- a/devel/boost-libs/files/patch-bae401b1eb0594932c4e780d496cba852c23b75f +++ /dev/null @@ -1,49 +0,0 @@ ---- boost/asio/ssl/impl/context.ipp.orig 2013-10-26 23:25:53 UTC -+++ boost/asio/ssl/impl/context.ipp -@@ -87,6 +87,14 @@ context::context(context::method m) - handle_ = ::SSL_CTX_new(::SSLv2_server_method()); - break; - #endif // defined(OPENSSL_NO_SSL2) -+#if defined(OPENSSL_NO_SSL3) -+ case context::sslv3: -+ case context::sslv3_client: -+ case context::sslv3_server: -+ boost::asio::detail::throw_error( -+ boost::asio::error::invalid_argument, "context"); -+ break; -+#else // defined(OPENSSL_NO_SSL3) - case context::sslv3: - handle_ = ::SSL_CTX_new(::SSLv3_method()); - break; -@@ -96,6 +104,7 @@ context::context(context::method m) - case context::sslv3_server: - handle_ = ::SSL_CTX_new(::SSLv3_server_method()); - break; -+#endif // defined(OPENSSL_NO_SSL3) - case context::tlsv1: - handle_ = ::SSL_CTX_new(::TLSv1_method()); - break; ---- boost/asio/ssl/old/detail/openssl_context_service.hpp.orig 2013-05-20 12:32:20 UTC -+++ boost/asio/ssl/old/detail/openssl_context_service.hpp -@@ -85,6 +85,13 @@ public: - impl = ::SSL_CTX_new(::SSLv2_server_method()); - break; - #endif // defined(OPENSSL_NO_SSL2) -+#if defined(OPENSSL_NO_SSL3) -+ case context_base::sslv3: -+ case context_base::sslv3_client: -+ case context_base::sslv3_server: -+ boost::asio::detail::throw_error(boost::asio::error::invalid_argument); -+ break; -+#else // defined(OPENSSL_NO_SSL3) - case context_base::sslv3: - impl = ::SSL_CTX_new(::SSLv3_method()); - break; -@@ -94,6 +101,7 @@ public: - case context_base::sslv3_server: - impl = ::SSL_CTX_new(::SSLv3_server_method()); - break; -+#endif // defined(OPENSSL_NO_SSL3) - case context_base::tlsv1: - impl = ::SSL_CTX_new(::TLSv1_method()); - break; |