summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@no-log.org>2012-10-20 17:50:13 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-14 14:38:27 +0000
commitc2ea0816af297e0cd742688e4b1c48c57976b623 (patch)
tree2b4f8be23b148d2617234779319ea0e0c76a41fd /meta/recipes-support
parent41125ddc8651494ffcf888d3b5efce1ae6d953bb (diff)
downloadpoky-c2ea0816af297e0cd742688e4b1c48c57976b623.tar.gz
boost: Activate zlib and bzip2 because they now work.
This patch is needed for making wesnoth(will be sumbited in meta-games) work. [RP: Add missing bzip2 dependency] (From OE-Core rev: 9987998d7431fb33b12a7e210024a8193b43e717) Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r--meta/recipes-support/boost/boost.inc9
1 files changed, 2 insertions, 7 deletions
diff --git a/meta/recipes-support/boost/boost.inc b/meta/recipes-support/boost/boost.inc
index 36a94e10ea..830fcb0568 100644
--- a/meta/recipes-support/boost/boost.inc
+++ b/meta/recipes-support/boost/boost.inc
@@ -6,7 +6,7 @@
6DESCRIPTION = "Free peer-reviewed portable C++ source libraries" 6DESCRIPTION = "Free peer-reviewed portable C++ source libraries"
7HOMEPAGE = "http://www.boost.org/" 7HOMEPAGE = "http://www.boost.org/"
8SECTION = "libs" 8SECTION = "libs"
9DEPENDS = "boost-native zlib" 9DEPENDS = "boost-native zlib bzip2"
10DEPENDS_class-native = "" 10DEPENDS_class-native = ""
11LICENSE = "BSL-1.0 & MIT & Python-2.0" 11LICENSE = "BSL-1.0 & MIT & Python-2.0"
12 12
@@ -16,7 +16,7 @@ BOOST_VER = "${@"_".join(d.getVar("PV",1).split("."))}"
16BOOST_MAJ = "${@"_".join(d.getVar("PV",1).split(".")[0:2])}" 16BOOST_MAJ = "${@"_".join(d.getVar("PV",1).split(".")[0:2])}"
17BOOST_P = "boost_${BOOST_VER}" 17BOOST_P = "boost_${BOOST_VER}"
18 18
19INC_PR = "r4" 19INC_PR = "r5"
20 20
21SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BOOST_P}.tar.bz2" 21SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BOOST_P}.tar.bz2"
22 22
@@ -109,16 +109,11 @@ EQD = '\"'
109#boost.bb: "... '-sGCC=... '${SQD}'-DBOOST_PLATFORM_CONFIG=${EQD}config${EQD}'${SQD} ..." 109#boost.bb: "... '-sGCC=... '${SQD}'-DBOOST_PLATFORM_CONFIG=${EQD}config${EQD}'${SQD} ..."
110BJAM_CONF = "${SQD}'-DBOOST_PLATFORM_CONFIG=${EQD}boost/config/platform/${TARGET_OS}.hpp${EQD}'${SQD}" 110BJAM_CONF = "${SQD}'-DBOOST_PLATFORM_CONFIG=${EQD}boost/config/platform/${TARGET_OS}.hpp${EQD}'${SQD}"
111 111
112# bzip2 and zip are disabled because... they're broken - the compilation simply
113# isn't working with bjam. I guess they will fix it, but who needs it? This
114# only affects the (new in 33) iostream library.
115BJAM_TOOLS = "-sTOOLS=gcc \ 112BJAM_TOOLS = "-sTOOLS=gcc \
116 '-sGCC=${CC} '${BJAM_CONF} \ 113 '-sGCC=${CC} '${BJAM_CONF} \
117 '-sGXX=${CXX} '${BJAM_CONF} \ 114 '-sGXX=${CXX} '${BJAM_CONF} \
118 '-sGCC_INCLUDE_DIRECTORY=${STAGING_INCDIR}' \ 115 '-sGCC_INCLUDE_DIRECTORY=${STAGING_INCDIR}' \
119 '-sGCC_STDLIB_DIRECTORY=${STAGING_LIBDIR}' \ 116 '-sGCC_STDLIB_DIRECTORY=${STAGING_LIBDIR}' \
120 '-sNO_BZIP2=1' \
121 '-sNO_ZLIB=1' \
122 '-sBUILD=release <optimization>space <threading>multi <inlining>on <debug-symbols>off' \ 117 '-sBUILD=release <optimization>space <threading>multi <inlining>on <debug-symbols>off' \
123 '-sPYTHON_VERSION=${PYTHON_VERSION}' \ 118 '-sPYTHON_VERSION=${PYTHON_VERSION}' \
124 '-sPYTHON_ROOT=${PYTHON_ROOT}' \ 119 '-sPYTHON_ROOT=${PYTHON_ROOT}' \