diff options
| author | Gianfranco Costamagna <costamagna.gianfranco@gmail.com> | 2018-08-06 10:29:17 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2018-08-08 12:04:13 -0700 |
| commit | 47d2bfaff1336ac47ca187bbeade88693a6a79dd (patch) | |
| tree | 20642c0fd3d923f068e97ce7a4ce1b3e7086f928 /meta-oe/recipes-support/cpprest/cpprest-2.10.2/boost-fix.patch | |
| parent | 19b47730e079aacceb04fbb6d77247158d90f87c (diff) | |
| download | meta-openembedded-47d2bfaff1336ac47ca187bbeade88693a6a79dd.tar.gz | |
cpprest: update to new 2.10.3 release, simplify recipe now that it has a cmake file in the root location
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/cpprest/cpprest-2.10.2/boost-fix.patch')
| -rw-r--r-- | meta-oe/recipes-support/cpprest/cpprest-2.10.2/boost-fix.patch | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/meta-oe/recipes-support/cpprest/cpprest-2.10.2/boost-fix.patch b/meta-oe/recipes-support/cpprest/cpprest-2.10.2/boost-fix.patch deleted file mode 100644 index 5318a6a103..0000000000 --- a/meta-oe/recipes-support/cpprest/cpprest-2.10.2/boost-fix.patch +++ /dev/null | |||
| @@ -1,14 +0,0 @@ | |||
| 1 | Origin: https://github.com/Microsoft/cpprestsdk/issues/813 | ||
| 2 | Last-Update: 2018-07-23 | ||
| 3 | |||
| 4 | --- cpprest-2.10.2.orig/Release/libs/websocketpp/websocketpp/transport/asio/security/tls.hpp | ||
| 5 | +++ cpprest-2.10.2/Release/libs/websocketpp/websocketpp/transport/asio/security/tls.hpp | ||
| 6 | @@ -312,7 +312,7 @@ protected: | ||
| 7 | return make_error_code(transport::error::tls_short_read); | ||
| 8 | #else | ||
| 9 | if (ERR_GET_REASON(ec.value()) == boost::asio::ssl::error::stream_truncated) { | ||
| 10 | - return make_error_code(boost::asio::ssl::error::stream_truncated); | ||
| 11 | + return make_error_code(static_cast<std::errc>(boost::asio::ssl::error::stream_truncated)); | ||
| 12 | #endif | ||
| 13 | } else { | ||
| 14 | // We know it is a TLS related error, but otherwise don't know | ||
