diff options
author | Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de> | 2013-09-02 07:08:04 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-06 23:03:22 +0100 |
commit | 06dc3a9712cca3690608d8336bb7982a41207d9e (patch) | |
tree | 4fa4868f523e5352bf8954d010f04a2cb4e1a25b /meta/recipes-support/boost | |
parent | 78296aad824df650d1da1900d675dfdb4f4ceeb2 (diff) | |
download | poky-06dc3a9712cca3690608d8336bb7982a41207d9e.tar.gz |
boost: adding serialization to BOOST_LIBS
Since its initial commit from the classic OpenEmbedded repository
in 43e94412c45b4b79485a64010c76d89b245bb235, serialization was
commented out, reportedly due to some issue with powerpc in the
boost version 1.36. In the classic OpenEmbedded repository,
serialization has been added again since version 1.4x.
The commit removes the outdated comment and adds serialization to
the BOOST_LIBS after testing `bitbake boost` and bitbaking some
applications using boost from the meta-ros layer for qemuppc.
(From OE-Core rev: a193d868a0c01a2998adb3e6eec9fc2748cca888)
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/boost')
-rw-r--r-- | meta/recipes-support/boost/boost.inc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/recipes-support/boost/boost.inc b/meta/recipes-support/boost/boost.inc index 5d20b11e11..5a219c5030 100644 --- a/meta/recipes-support/boost/boost.inc +++ b/meta/recipes-support/boost/boost.inc | |||
@@ -11,15 +11,13 @@ BOOST_LIBS = "\ | |||
11 | iostreams \ | 11 | iostreams \ |
12 | program_options \ | 12 | program_options \ |
13 | regex \ | 13 | regex \ |
14 | serialization \ | ||
14 | signals \ | 15 | signals \ |
15 | system \ | 16 | system \ |
16 | test \ | 17 | test \ |
17 | thread \ | 18 | thread \ |
18 | " | 19 | " |
19 | 20 | ||
20 | # FIXME: for some reason this fails on powerpc | ||
21 | #BOOST_LIBS += "serialization" | ||
22 | |||
23 | # To enable python, uncomment the following: | 21 | # To enable python, uncomment the following: |
24 | #BOOST_LIBS += "python" | 22 | #BOOST_LIBS += "python" |
25 | #DEPENDS += "python" | 23 | #DEPENDS += "python" |