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/files | |
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/files')
-rw-r--r-- | recipes/boost/files/1.41.0_uclibc.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/recipes/boost/files/1.41.0_uclibc.patch b/recipes/boost/files/1.41.0_uclibc.patch new file mode 100644 index 0000000000..21d12da095 --- /dev/null +++ b/recipes/boost/files/1.41.0_uclibc.patch @@ -0,0 +1,13 @@ +Index: boost-1.41.0.cmake0/libs/thread/src/pthread/thread.cpp +=================================================================== +--- boost-1.41.0.cmake0.orig/libs/thread/src/pthread/thread.cpp ++++ boost-1.41.0.cmake0/libs/thread/src/pthread/thread.cpp +@@ -380,7 +380,7 @@ namespace boost + { + #if defined(PTW32_VERSION) || defined(__hpux) + return pthread_num_processors_np(); +-#elif defined(_GNU_SOURCE) ++#elif defined(_GNU_SOURCE) && !defined(__UCLIBC__) + return get_nprocs(); + #elif defined(__APPLE__) || defined(__FreeBSD__) + int count; |