[Python-checkins] cpython: Issue #21085: Fix accidental leading +'s in configure.ac
zach.ware
python-checkins at python.org
Sat Oct 1 02:07:02 EDT 2016
https://hg.python.org/cpython/rev/5673cf852daa
changeset: 104214:5673cf852daa
user: Zachary Ware <zachary.ware at gmail.com>
date: Sat Oct 01 01:06:51 2016 -0500
summary:
Issue #21085: Fix accidental leading +'s in configure.ac
files:
configure.ac | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
--- a/configure.ac
+++ b/configure.ac
@@ -3907,8 +3907,8 @@
#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,[
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list