diff options
author | Felix Lee <flee@cygnus> | 1997-07-28 22:34:36 +0000 |
---|---|---|
committer | Felix Lee <flee@cygnus> | 1997-07-28 22:34:36 +0000 |
commit | ce4450fa09dafa36b069185fe198f14d038a1985 (patch) | |
tree | 2ff2935fcab87780d990d8f8ab6d128dc9cb7f7d /gdb/Makefile.in | |
parent | 8dbbb8be9b0f0211ff8af51aaab1cbebcbdab24c (diff) | |
download | gdb-ce4450fa09dafa36b069185fe198f14d038a1985.zip gdb-ce4450fa09dafa36b069185fe198f14d038a1985.tar.gz gdb-ce4450fa09dafa36b069185fe198f14d038a1985.tar.bz2 |
* Makefile.in (init.c): don't try to scan mswin for _initialize
funcs. (generates misleading error message because files have
.cpp suffix, not .c suffix)
* ser-e7kpc.c: <w32sut.h> -> "mswin/w32sut.h"
* mon960-rom.c: removed unused #includes; no ioctl.h in Windows.
* nindy-share/ttyflush.c: find sleep() for _MSC_VER.
* remote-array.c: #include <ctype.h> for isascii().
* utils.c (notice_quit,pollquit): cleanup. _WIN32 -> _MSC_VER.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index bec9aa8..48700af 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -620,6 +620,7 @@ init.c: $(OBS) $(TSOBS) tr ' ' '\012' | \ sed -e '/^Onindy.o/d' \ -e '/^nindy.o/d' \ + -e '/^mswin/d' \ -e '/ttyflush.o/d' \ -e '/xdr_ld.o/d' \ -e '/xdr_ptrace.o/d' \ |