From 0e62a6742bca186624e97e2121c98ada30e009a0 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 25 Feb 2021 17:17:56 +0100 Subject: patch 8.2.2550: signal stack size is wrong with latest glibc 2.34 Problem: Signal stack size is wrong with latest glibc 2.34. Solution: Use sysconf(_SC_SIGSTKSZ) if available. (Zdenek Dohnal, closes #7895) --- src/config.h.in | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/config.h.in') diff --git a/src/config.h.in b/src/config.h.in index b11448021..5d01e2c4f 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 -- cgit v1.2.1