]> code.ossystems Code Review - openembedded-core.git/commitdiff
boost : Do not use icu when building boost.
authorPhilip Balister <philip@balister.org>
Mon, 12 Dec 2011 21:58:36 +0000 (16:58 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 13 Dec 2011 12:21:05 +0000 (12:21 +0000)
Without this, boost needs to build icu to create images using
boost regex. RP inidicated he would rather disable icu, than add an
extra dependency to the recipe.

Signed-off-by: Philip Balister <philip@balister.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-support/boost/boost.inc

index cc26ef9e9b7bf8756b9712c4d716fbbffe16a856..aa577b3f0f94868144872c6638790f5dc183f39c 100644 (file)
@@ -16,7 +16,7 @@ BOOST_VER = "${@"_".join(d.getVar("PV",1).split("."))}"
 BOOST_MAJ = "${@"_".join(d.getVar("PV",1).split(".")[0:2])}"
 BOOST_P = "boost_${BOOST_VER}"
 
-INC_PR = "r1"
+INC_PR = "r2"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BOOST_P}.tar.bz2"
 
@@ -127,6 +127,7 @@ BJAM_TOOLS   = "-sTOOLS=gcc \
 BJAM_OPTS    = '${BJAM_TOOLS} \
                --builddir=${S}/${TARGET_SYS} \
                --with-python-root=${PYTHON_ROOT} \
+               --without-icu \
                ${BJAM_EXTRA}'