summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/boost/boost/0001-Revert-change-to-elide-a-warning-that-caused-Solaris.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/boost/boost/0001-Revert-change-to-elide-a-warning-that-caused-Solaris.patch')
-rw-r--r--meta/recipes-support/boost/boost/0001-Revert-change-to-elide-a-warning-that-caused-Solaris.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-support/boost/boost/0001-Revert-change-to-elide-a-warning-that-caused-Solaris.patch b/meta/recipes-support/boost/boost/0001-Revert-change-to-elide-a-warning-that-caused-Solaris.patch
new file mode 100644
index 0000000000..3784cf9165
--- /dev/null
+++ b/meta/recipes-support/boost/boost/0001-Revert-change-to-elide-a-warning-that-caused-Solaris.patch
@@ -0,0 +1,24 @@
1From 74fb0a26099bc51d717f5f154b37231ce7df3e98 Mon Sep 17 00:00:00 2001
2From: Rob Boehne <robb@datalogics.com>
3Date: Wed, 20 Nov 2019 11:25:20 -0600
4Subject: [PATCH] Revert change to elide a warning that caused Solaris builds
5 to fail.
6
7Upstream-Status: Backport [1.73.0 https://github.com/boostorg/thread/commit/74fb0a26099bc51d717f5f154b37231ce7df3e98]
8---
9 boost/thread/pthread/thread_data.hpp | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/boost/thread/pthread/thread_data.hpp b/boost/thread/pthread/thread_data.hpp
13index aefbeb43..bc9b1367 100644
14--- a/boost/thread/pthread/thread_data.hpp
15+++ b/boost/thread/pthread/thread_data.hpp
16@@ -57,7 +57,7 @@ namespace boost
17 #else
18 std::size_t page_size = ::sysconf( _SC_PAGESIZE);
19 #endif
20-#if PTHREAD_STACK_MIN > 0
21+#ifdef PTHREAD_STACK_MIN
22 if (size<PTHREAD_STACK_MIN) size=PTHREAD_STACK_MIN;
23 #endif
24 size = ((size+page_size-1)/page_size)*page_size;