diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2016-10-01 01:06:51 -0500 |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2016-10-01 01:06:51 -0500 |
commit | e999e96143a85af9ed50e2ad240ff28113c4feba (patch) | |
tree | 571bcf5698d64362234fc6f078c91f4ea9157b83 /configure.ac | |
parent | 6a6967e827e11d332598a9395adb9c578184f914 (diff) | |
download | cpython-git-e999e96143a85af9ed50e2ad240ff28113c4feba.tar.gz |
Issue #21085: Fix accidental leading +'s in configure.ac
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 8465afc963..1ca8825f19 100644 --- a/configure.ac +++ b/configure.ac @@ -3907,8 +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>]]) +# 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,[ |