diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2016-10-01 05:47:27 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2016-10-01 05:47:27 (GMT) |
commit | 6a6967e827e11d332598a9395adb9c578184f914 (patch) | |
tree | 4d5d81e3ea513a40062af07188bfb0ecad196b1b /configure.ac | |
parent | efd1bf443431529d1d2f21fc8f77ed78557e8245 (diff) | |
download | cpython-6a6967e827e11d332598a9395adb9c578184f914.zip cpython-6a6967e827e11d332598a9395adb9c578184f914.tar.gz cpython-6a6967e827e11d332598a9395adb9c578184f914.tar.bz2 |
Issue #21085: add configure check for siginfo_t.si_band
Patch by Masayuki Yamamoto, reviewed and rebased by Erik Bray.
This is a first step on the long road toward resupporting Cygwin, which does
not provide siginfo_t.si_band.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index d395632..8465afc 100644 --- a/configure.ac +++ b/configure.ac @@ -3907,6 +3907,8 @@ AC_CHECK_MEMBERS([struct passwd.pw_gecos, struct passwd.pw_passwd], [], [], [[ #include <sys/types.h> #include <pwd.h> ]]) ++# Issue #21085: In Cygwin, siginfo_t does not have si_band field. ++AC_CHECK_MEMBERS([siginfo_t.si_band], [], [], [[#include <signal.h>]]) AC_MSG_CHECKING(for time.h that defines altzone) AC_CACHE_VAL(ac_cv_header_time_altzone,[ |