summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/boost/boost
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2017-10-04 18:23:41 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-09 12:33:16 +0000
commit6d3262e3a863823502a9afc4556e5c6546005279 (patch)
tree7601c9b586c33ae314d4e214330c53264b208b5c /meta/recipes-support/boost/boost
parent31eb2baed27fa83073c8718f40a6af7070097c37 (diff)
downloadpoky-6d3262e3a863823502a9afc4556e5c6546005279.tar.gz
boost: update to 1.65.1
Add a patch to fix bjam-native compile error (due to mistyped variable name). Drop upstreamed patch. (From OE-Core rev: ba2d391d8268203895ab2f792f92b7fd92deeb45) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/boost/boost')
-rw-r--r--meta/recipes-support/boost/boost/0001-boost-asio-detail-socket_types.hpp-fix-poll.h-includ.patch49
1 files changed, 0 insertions, 49 deletions
diff --git a/meta/recipes-support/boost/boost/0001-boost-asio-detail-socket_types.hpp-fix-poll.h-includ.patch b/meta/recipes-support/boost/boost/0001-boost-asio-detail-socket_types.hpp-fix-poll.h-includ.patch
deleted file mode 100644
index 8a85aac18f..0000000000
--- a/meta/recipes-support/boost/boost/0001-boost-asio-detail-socket_types.hpp-fix-poll.h-includ.patch
+++ /dev/null
@@ -1,49 +0,0 @@
1From 40192301130dcd913aa6d9cb9dba9e5f8dbd9d16 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Andr=C3=A9=20Draszik?= <adraszik@tycoint.com>
3Date: Wed, 24 Aug 2016 21:01:43 +0100
4Subject: [PATCH 1/4] use POSIX poll.h instead of sys/poll.h
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9POSIX specifies that <poll.h> is the correct header to
10include for poll()
11 http://pubs.opengroup.org/onlinepubs/009695399/functions/poll.html
12whereas <sys/poll.h> is only needed for ancient glibc (<2.3),
13so let's follow POSIX instead.
14
15As a side-effect, this silences a warning when compiling
16against the musl C-library:
17
18In file included from ./boost/asio/detail/socket_types.hpp:61:0,
19 from ./boost/asio/ip/address_v4.hpp:21,
20 from ./boost/asio/ip/address.hpp:21,
21 from libs/log/src/init_from_settings.cpp:65:
22<sysroot>/usr/include/sys/poll.h:1:2: warning: #warning redirecting incorrect #include <sys/poll.h> to <poll.h> [-Wcpp]
23 #warning redirecting incorrect #include <sys/poll.h> to <poll.h>
24 ^~~~~~~
25
26etc.
27
28Signed-off-by: André Draszik <adraszik@tycoint.com>
29---
30Upstream-Status: Submitted https://svn.boost.org/trac/boost/ticket/12419
31 boost/asio/detail/socket_types.hpp | 2 +-
32 1 file changed, 1 insertion(+), 1 deletion(-)
33
34diff --git a/boost/asio/detail/socket_types.hpp b/boost/asio/detail/socket_types.hpp
35index e8c7109..7e65d3c 100644
36--- a/boost/asio/detail/socket_types.hpp
37+++ b/boost/asio/detail/socket_types.hpp
38@@ -58,7 +58,7 @@
39 #else
40 # include <sys/ioctl.h>
41 # if !defined(__SYMBIAN32__)
42-# include <sys/poll.h>
43+# include <poll.h>
44 # endif
45 # include <sys/types.h>
46 # include <sys/stat.h>
47--
482.9.3
49