diff options
author | Henning Heinold <heinold@inf.fu-berlin.de> | 2009-11-03 23:01:31 +0100 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2009-11-03 23:06:31 +0100 |
commit | c0089b4e8124b757fd3f004b3a238c805469d38a (patch) | |
tree | 739c7d468411e439bef1b98d61963f027d8d6ff1 /recipes/boost/files | |
parent | 1aa6d29a4e291455b6d54a01c728e2193b1d2cc7 (diff) |
boost: add new version 1.4.0
* switch to cmake as buildsystem
* enable serialization and python
* make own .inc for 1.4.x versions
* don't make default for now, needs more testing with
apps that are using boost
Diffstat (limited to 'recipes/boost/files')
-rw-r--r-- | recipes/boost/files/uclibc.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/recipes/boost/files/uclibc.patch b/recipes/boost/files/uclibc.patch new file mode 100644 index 0000000000..738b8b947d --- /dev/null +++ b/recipes/boost/files/uclibc.patch @@ -0,0 +1,13 @@ +Index: boost-1.40.0.cmake2/libs/thread/src/pthread/thread.cpp +=================================================================== +--- boost-1.40.0.cmake2.orig/libs/thread/src/pthread/thread.cpp 2009-11-03 21:33:21.392444361 +0100 ++++ boost-1.40.0.cmake2/libs/thread/src/pthread/thread.cpp 2009-11-03 21:36:04.748684550 +0100 +@@ -390,7 +390,7 @@ + { + #if defined(PTW32_VERSION) || defined(__hpux) + return pthread_num_processors_np(); +-#elif defined(__linux__) ++#elif defined(__linux__) && !defined(__UCLIBC__) + return get_nprocs(); + #elif defined(__APPLE__) || defined(__FreeBSD__) + int count; |