* configure.in: Check for ttrace function.

* configure, config.in: Regenerate.
This commit is contained in:
Mark Kettenis 2004-08-21 12:05:52 +00:00
parent e7dc800a0c
commit bcb3dc3d55
4 changed files with 278 additions and 216 deletions

View File

@ -1,5 +1,8 @@
2004-08-21 Mark Kettenis <kettenis@gnu.org> 2004-08-21 Mark Kettenis <kettenis@gnu.org>
* configure.in: Check for ttrace function.
* configure, config.in: Regenerate.
* gdb_ptrace.h: New file. * gdb_ptrace.h: New file.
* infptrace.c: Include "gdb_ptrace.h" instead of <ptrace.h> or * infptrace.c: Include "gdb_ptrace.h" instead of <ptrace.h> or
<sys/ptrace.h>. <sys/ptrace.h>.

View File

@ -260,6 +260,9 @@
/* Define if you have the syscall function. */ /* Define if you have the syscall function. */
#undef HAVE_SYSCALL #undef HAVE_SYSCALL
/* Define if you have the ttrace function. */
#undef HAVE_TTRACE
/* Define if you have the <argz.h> header file. */ /* Define if you have the <argz.h> header file. */
#undef HAVE_ARGZ_H #undef HAVE_ARGZ_H

487
gdb/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -483,6 +483,7 @@ AC_CHECK_FUNCS(setpgid setpgrp)
AC_CHECK_FUNCS(sigaction sigprocmask sigsetmask) AC_CHECK_FUNCS(sigaction sigprocmask sigsetmask)
AC_CHECK_FUNCS(socketpair) AC_CHECK_FUNCS(socketpair)
AC_CHECK_FUNCS(syscall) AC_CHECK_FUNCS(syscall)
AC_CHECK_FUNCS(ttrace)
# Check the return and argument types of ptrace. No canned test for # Check the return and argument types of ptrace. No canned test for
# this, so roll our own. # this, so roll our own.