diff options
author | Pedro Alves <palves@redhat.com> | 2015-07-24 14:57:19 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-07-24 14:57:19 +0100 |
commit | eb7aa56163cc15bb732aa3b07966103fd6940d50 (patch) | |
tree | c74c84c1a5bcce3a18cbd5986e7987f48c9f8ac3 /gdb/gdbserver/config.in | |
parent | 55d7b841962c6e054735acdca2e0bb485afa0144 (diff) | |
download | gdb-eb7aa56163cc15bb732aa3b07966103fd6940d50.zip gdb-eb7aa56163cc15bb732aa3b07966103fd6940d50.tar.gz gdb-eb7aa56163cc15bb732aa3b07966103fd6940d50.tar.bz2 |
make gdbserver use the same ptrace autoconf checks as gdb
This factors the ptrace checks out of gdb's configure.ac to a new
ptrace.m4 file, and then makes gdbserver's configure.ac source it too.
gdb/ChangeLog:
2015-07-24 Pedro Alves <palves@redhat.com>
* acinclude.m4: Include ptrace.m4.
* configure.ac: Call GDB_AC_PTRACE and move ptrace checks ...
* ptrace.m4: ... to this new file.
gdb/gdbserver/ChangeLog:
2015-07-24 Pedro Alves <palves@redhat.com>
* acinclude.m4: Include ../ptrace.m4.
* configure.ac: Call GDB_AC_PTRACE.
* config.in, configure: Regenerate.
Diffstat (limited to 'gdb/gdbserver/config.in')
-rw-r--r-- | gdb/gdbserver/config.in | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gdb/gdbserver/config.in b/gdb/gdbserver/config.in index f24e6bb..6f2d0a1 100644 --- a/gdb/gdbserver/config.in +++ b/gdb/gdbserver/config.in @@ -37,6 +37,10 @@ */ #undef HAVE_DECL_PERROR +/* Define to 1 if you have the declaration of `ptrace', and to 0 if you don't. + */ +#undef HAVE_DECL_PTRACE + /* Define to 1 if you have the declaration of `snprintf', and to 0 if you don't. */ #undef HAVE_DECL_SNPRINTF @@ -183,6 +187,9 @@ /* Define if the target supports PTRACE_GETREGS for register access. */ #undef HAVE_PTRACE_GETREGS +/* Define to 1 if you have the <ptrace.h> header file. */ +#undef HAVE_PTRACE_H + /* Define to 1 if you have the `pwrite' function. */ #undef HAVE_PWRITE @@ -234,6 +241,9 @@ /* Define to 1 if you have the <sys/procfs.h> header file. */ #undef HAVE_SYS_PROCFS_H +/* Define to 1 if you have the <sys/ptrace.h> header file. */ +#undef HAVE_SYS_PTRACE_H + /* Define to 1 if you have the <sys/reg.h> header file. */ #undef HAVE_SYS_REG_H @@ -300,6 +310,18 @@ /* Additional package description */ #undef PKGVERSION +/* Define to the type of arg 3 for ptrace. */ +#undef PTRACE_TYPE_ARG3 + +/* Define to the type of arg 4 for ptrace. */ +#undef PTRACE_TYPE_ARG4 + +/* Define to the type of arg 5 for ptrace. */ +#undef PTRACE_TYPE_ARG5 + +/* Define as the return type of ptrace. */ +#undef PTRACE_TYPE_RET + /* Bug reporting address */ #undef REPORT_BUGS_TO |