Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e999e96

Browse files
committed
Issue #21085: Fix accidental leading +'s in configure.ac
1 parent 6a6967e commit e999e96

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3907,8 +3907,8 @@ AC_CHECK_MEMBERS([struct passwd.pw_gecos, struct passwd.pw_passwd], [], [], [[
39073907
#include <sys/types.h>
39083908
#include <pwd.h>
39093909
]])
3910-
+# Issue #21085: In Cygwin, siginfo_t does not have si_band field.
3911-
+AC_CHECK_MEMBERS([siginfo_t.si_band], [], [], [[#include <signal.h>]])
3910+
# Issue #21085: In Cygwin, siginfo_t does not have si_band field.
3911+
AC_CHECK_MEMBERS([siginfo_t.si_band], [], [], [[#include <signal.h>]])
39123912

39133913
AC_MSG_CHECKING(for time.h that defines altzone)
39143914
AC_CACHE_VAL(ac_cv_header_time_altzone,[

0 commit comments

Comments
 (0)