Advertisement
Guest User

Untitled

a guest
May 31st, 2012
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.82 KB | None | 0 0
  1. diff -Naur boost/config/platform/haiku.hpp.orig boost/config/platform/haiku.hpp
  2. --- boost/config/platform/haiku.hpp.orig    2012-05-31 09:51:52.356515840 +0600
  3. +++ boost/config/platform/haiku.hpp 2012-05-31 10:21:39.766246912 +0600
  4. @@ -11,15 +11,18 @@
  5.  
  6.  #define BOOST_HAS_UNISTD_H
  7.    
  8. +#define BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
  9.    
  10. -#ifndef BOOST_DISABLE_THREADS
  11. -#   define BOOST_HAS_THREADS
  12. -#endif
  13. +#define BOOST_HAS_PTHREADS
  14.  
  15.  //
  16.  // thread API's not auto detected:
  17.  //
  18. +#define BOOST_HAS_SCHED_YIELD
  19. +#define BOOST_HAS_NANOSLEEP
  20.  #define BOOST_HAS_GETTIMEOFDAY
  21. +#define BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE
  22. +#define BOOST_HAS_SIGACTION
  23.  
  24.  // boilerplate code:
  25.  #include <boost/config/posix_features.hpp>
  26. diff -Naur boost/config/select_platform_config.hpp boost1/config/select_platform_config.hpp
  27. --- boost/config/select_platform_config.hpp 2011-02-14 10:10:56.020447232 +0500
  28. +++ boost1/config/select_platform_config.hpp    2011-07-15 14:44:54.698875904 +0600
  29. @@ -41,6 +41,10 @@
  30.  // win32:
  31.  #  define BOOST_PLATFORM_CONFIG "boost/config/platform/win32.hpp"
  32.  
  33. +#elif defined(__HAIKU__)
  34. +// Haiku
  35. +#  define BOOST_PLATFORM_CONFIG "boost/config/platform/haiku.hpp"
  36. +
  37.  #elif defined(__BEOS__)
  38.  // BeOS
  39.  #  define BOOST_PLATFORM_CONFIG "boost/config/platform/beos.hpp"
  40. diff -Naur boost/config/stdlib/libstdcpp3.hpp.orig boost/config/stdlib/libstdcpp3.hpp
  41. --- boost/config/stdlib/libstdcpp3.hpp.orig 2012-05-31 10:18:34.213123072 +0600
  42. +++ boost/config/stdlib/libstdcpp3.hpp  2012-05-31 10:19:13.041680896 +0600
  43. @@ -32,7 +32,7 @@
  44.  #endif
  45.  
  46.  #ifdef __GLIBCXX__ // gcc 3.4 and greater:
  47. -#  if defined(_GLIBCXX_HAVE_GTHR_DEFAULT) \
  48. +#  if defined(_GLIBCXX_HAVE_GTHR_DEFAULT) || defined(__HAIKU__) \
  49.          || defined(_GLIBCXX__PTHREADS) \
  50.          || defined(_GLIBCXX_HAS_GTHREADS) \
  51.          || defined(_WIN32)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement