diff options
author | Jason Molenda <jmolenda@apple.com> | 1998-10-13 00:35:48 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1998-10-13 00:35:48 +0000 |
commit | 1dee2761ad89b43593f2a5fac932828189a56837 (patch) | |
tree | 224698eaf8bcfa0f6cb03711c8027362d9892c92 /gdb/configure.in | |
parent | a148e678b2caab6bfec834034b3db41551781a0b (diff) | |
download | gdb-1dee2761ad89b43593f2a5fac932828189a56837.zip gdb-1dee2761ad89b43593f2a5fac932828189a56837.tar.gz gdb-1dee2761ad89b43593f2a5fac932828189a56837.tar.bz2 |
1998-10-12 Jason Molenda (jsm@bugshack.cygnus.com)
* configure.in: Check for sys/debugreg.h, asm/debugreg.h.
* i386v-nat.c: Include asm/debugreg.h, sys/debugreg.h if it is not
present.
This is to work around a conflict where the Linux 2.1.x kernel and glibc
2.0.x are not in sync; including <sys/debugreg.h> will result in an error.
With luck, these losers will get their act together and we can trash
this hack in the near future.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index bf4bf20..204a160 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -72,7 +72,7 @@ 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) + wchar.h wctype.h asm/debugreg.h) AC_HEADER_STAT |