diff options
author | Denis 'Gnutoo' Carikli <GNUtoo@no-log.org> | 2009-12-06 23:59:11 +0100 |
---|---|---|
committer | Denis 'Gnutoo' Carikli <GNUtoo@no-log.org> | 2009-12-07 00:16:39 +0100 |
commit | 8bd570aa038b899cacaf6768945db691009ac884 (patch) | |
tree | fa0723855e445ed58d4c677d2a558b24998bb590 /recipes/boost/boost-14x.inc | |
parent | b3312705e639262b3b83017897cd3056b22e8912 (diff) |
boost: add version 1.41.0 and modified boost-14x.inc
*1.41.0 fixes a bug with MPI: in 1.40.0 if you don't have the mpi
libraries installed in your host it fails
*added the dependency on icu because of things like that:
unicode/utypes.h: No such file or directory
*made it install in ${libdir} instead of ${libdir}/boost-${PV}:
thanks woglinde for pointing me that a variable existed for that
that is achieved with -DINSTALL_VERSIONED:BOOL=OFF
*removed an useless like that were here because the recipe was
copied from the split function was copied from an old boost recipe
that used bjam
Diffstat (limited to 'recipes/boost/boost-14x.inc')
-rw-r--r-- | recipes/boost/boost-14x.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes/boost/boost-14x.inc b/recipes/boost/boost-14x.inc index b1a5f6bb65..0a530013e2 100644 --- a/recipes/boost/boost-14x.inc +++ b/recipes/boost/boost-14x.inc @@ -22,6 +22,8 @@ EXTRA_OECMAKE = "-DBUILD_SHARED=ON \ -DBUILD_MULTI_THREADED=ON \ -DBUILD_RELEASE=ON \ -DBUILD_DEBUG=OFF \ + -DWITH_MPI:BOOL=OFF \ + -DINSTALL_VERSIONED:BOOL=OFF \ " BOOST_LIBS = "\ @@ -64,7 +66,6 @@ python __anonymous () { if not bb.data.getVar("FILES_%s" % pkg, d, 1): bb.data.setVar("FILES_%s" % pkg, "${libdir}/libboost_%s*.so*" % lib, d) bb.data.setVar("BOOST_PACKAGES", " ".join(packages), d) - bb.data.setVar("BJAM_EXTRA", " ".join(extras), d) } # Override the contents of specific packages |