summaryrefslogtreecommitdiffstats
path: root/src/config.h.in
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-02-25 17:17:56 +0100
committerBram Moolenaar <Bram@vim.org>2021-02-25 17:17:56 +0100
commit0e62a6742bca186624e97e2121c98ada30e009a0 (patch)
tree563c0f5cfa22a827bc37c5ef37c0d34863da9da1 /src/config.h.in
parent1bd3cb201983859d86d644eef9e98cd3e9de7261 (diff)
patch 8.2.2550: signal stack size is wrong with latest glibc 2.34v8.2.2550
Problem: Signal stack size is wrong with latest glibc 2.34. Solution: Use sysconf(_SC_SIGSTKSZ) if available. (Zdenek Dohnal, closes #7895)
Diffstat (limited to 'src/config.h.in')
-rw-r--r--src/config.h.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.h.in b/src/config.h.in
index b11448021f..5d01e2c4f7 100644
--- a/src/config.h.in
+++ b/src/config.h.in
@@ -496,3 +496,6 @@
/* Define to inline symbol or empty */
#undef inline
+
+/* Define if _SC_SIGSTKSZ is available via sysconf() */
+#undef HAVE_SYSCONF_SIGSTKSZ