diff options
author | Tom Tromey <tom@tromey.com> | 2019-10-17 20:51:44 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-10-23 09:06:21 -0600 |
commit | c12d372d263309e2ee81efda713096ea9e62a759 (patch) | |
tree | a920557ca67893937fedd1d0a5120ba93b67452b /gdb/gdbsupport | |
parent | 4d0b984b970b9526d267ada259b62ec2c42cfb24 (diff) | |
download | gdb-c12d372d263309e2ee81efda713096ea9e62a759.zip gdb-c12d372d263309e2ee81efda713096ea9e62a759.tar.gz gdb-c12d372d263309e2ee81efda713096ea9e62a759.tar.bz2 |
Check for sigprocmask in common.m4
I noticed that gdbsupport uses HAVE_SIGPROCMASK, but common.m4 does
not check for it. This means that gdbserver may not compile some
gdbsupport code properly. This patch fixes this error.
gdb/ChangeLog
2019-10-23 Tom Tromey <tom@tromey.com>
* configure: Rebuild.
* configure.ac: Don't check for sigprocmask.
* gdbsupport/common.m4 (GDB_AC_COMMON): Check for sigprocmask.
gdb/gdbserver/ChangeLog
2019-10-23 Tom Tromey <tom@tromey.com>
* configure, config.in: Rebuild.
Change-Id: I2c0a4dd2c376507b9483b38707a242382faa8163
Diffstat (limited to 'gdb/gdbsupport')
-rw-r--r-- | gdb/gdbsupport/common.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/gdbsupport/common.m4 b/gdb/gdbsupport/common.m4 index 9038894..471d705 100644 --- a/gdb/gdbsupport/common.m4 +++ b/gdb/gdbsupport/common.m4 @@ -32,7 +32,8 @@ AC_DEFUN([GDB_AC_COMMON], [ termios.h dnl dlfcn.h) - AC_CHECK_FUNCS([fdwalk getrlimit pipe pipe2 socketpair sigaction]) + AC_CHECK_FUNCS([fdwalk getrlimit pipe pipe2 socketpair sigaction \ + sigprocmask]) AC_CHECK_DECLS([strerror, strstr]) |