diff options
author | Jason Molenda <jmolenda@apple.com> | 1998-08-18 23:04:24 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1998-08-18 23:04:24 +0000 |
commit | 4ff3dfab548b25c2b413095dc021e6ab32fab22b (patch) | |
tree | f360200560ec63d05cb32245ec138f4026236523 /gdb/configure.in | |
parent | 1aecc7dccb3ed3995f7c2f92fd728e4cc6d5cc4c (diff) | |
download | gdb-4ff3dfab548b25c2b413095dc021e6ab32fab22b.zip gdb-4ff3dfab548b25c2b413095dc021e6ab32fab22b.tar.gz gdb-4ff3dfab548b25c2b413095dc021e6ab32fab22b.tar.bz2 |
1998-08-18 Jason Molenda (jsm@bugshack.cygnus.com)
* configure.in: Add more header files to AC_CHECK_HEADERS.
* configure: Regenerated.
* command.c: Include wait.h or sys/wait.h if present.
* inftarg.c: Ditto.
* core-aout.c: Include ptrace.h or sys/ptrace.h if present, based
on autoconf test.
* infptrace.c: Ditto.
* expprint.c: Include ctype.h for isprint prototype.
* i386aix-nat.c: Include sys/reg.h if autoconf says it is present.
* i386v-nat.c: Include ptrace.h, sys/ptrace.h, and sys/reg.h if
present, based on autoconf test.
* utils.c: Include curses.h and term.h if present.
(puts_debug): Change 'carriage_return' local variable to return_p
to avoid name clash.
* config/m68k/nm-apollo68b.h: Don't define PTRACE_IN_WRONG_PLACE,
determine it with autoconf.
* config/i386/nm-linux.h: Don't define NO_SYS_REG_H, determine it
with autoconf.
* config/i386/nm-i386sco.h: Don't define NO_PTRACE_H, determine it
with autoconf.
* config/i386/nm-i386v.h: Ditto.
* config/i386/nm-symmetry.h: Ditto.
* config/m88k/xm-cxux.h: Ditto.
* config/m88k/xm-dgux.h: Ditto.
* config/m68k/delta68.mh (NAT_FILE): nm-delta68.h no longer necessary.
* config/m68k/nm-delta68.h: Removed.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index 8d70e66..db97554 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -68,7 +68,11 @@ AC_ARG_PROGRAM AC_TYPE_SIGNAL AC_HEADER_STDC -AC_CHECK_HEADERS(limits.h memory.h string.h strings.h unistd.h termios.h termio.h sgtty.h stddef.h stdlib.h sys/procfs.h link.h endian.h objlist.h libintl.h wctype.h wchar.h) +AC_CHECK_HEADERS(ctype.h curses.h endian.h libintl.h limits.h link.h \ + memory.h objlist.h ptrace.h sgtty.h stddef.h stdlib.h \ + string.h strings.h sys/procfs.h sys/ptrace.h sys/reg.h \ + term.h termio.h termios.h unistd.h wait.h sys/wait.h \ + wchar.h wctype.h) AC_HEADER_STAT |