summaryrefslogtreecommitdiffstats
path: root/unit-build.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2021-09-03 18:05:58 +0200
committerRemi Collet <remi@remirepo.net>2021-09-03 18:05:58 +0200
commit1dca2e185976b2814ad351214618dc679a32c236 (patch)
treef989af3d3130dadade8731be69f6ced1e5f0332b /unit-build.patch
parent00121c48d72e9e10a9faa49dbedc7f6c8366d2cd (diff)
fix build with recent glibc using patch from
https://github.com/nginx/unit/pull/576
Diffstat (limited to 'unit-build.patch')
-rw-r--r--unit-build.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/unit-build.patch b/unit-build.patch
new file mode 100644
index 0000000..c2b0ef4
--- /dev/null
+++ b/unit-build.patch
@@ -0,0 +1,25 @@
+From 0125873b1dfbe6e671e3c9874ec2653f1b7832fa Mon Sep 17 00:00:00 2001
+From: Remi Collet <remi@remirepo.net>
+Date: Fri, 3 Sep 2021 18:03:38 +0200
+Subject: [PATCH] fix build with recent glibc
+
+---
+ src/nxt_thread.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/nxt_thread.h b/src/nxt_thread.h
+index d7800cc..36e74cd 100644
+--- a/src/nxt_thread.h
++++ b/src/nxt_thread.h
+@@ -142,7 +142,7 @@ nxt_thread_yield() \
+ #endif
+
+
+-#if (PTHREAD_STACK_MIN)
++#if defined(PTHREAD_STACK_MIN)
+ #define NXT_THREAD_STACK_MIN PTHREAD_STACK_MIN
+
+ #else
+--
+2.31.1
+