summary refs log tree commit diff
path: root/pkgs/development/libraries/boost/pthread-stack-min-fix.patch
blob: b6c85f840529817c6ac28ed8a55e97f48fbd8045 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Taken from https://github.com/conan-io/conan-center-index/pull/361/files

diff --git a/include/boost/thread/pthread/thread_data.hpp b/include/boost/thread/pthread/thread_data.hpp
index aefbeb4..bc9b136 100644
--- a/boost/thread/pthread/thread_data.hpp
+++ b/boost/thread/pthread/thread_data.hpp
@@ -57,7 +57,7 @@ namespace boost
 #else
           std::size_t page_size = ::sysconf( _SC_PAGESIZE);
 #endif
-#if PTHREAD_STACK_MIN > 0
+#ifdef PTHREAD_STACK_MIN
           if (size<PTHREAD_STACK_MIN) size=PTHREAD_STACK_MIN;
 #endif
           size = ((size+page_size-1)/page_size)*page_size;