This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[patch] m88k builds, fix lost #include 'serial.h'


Hello,

The attatched is to confirm that the m88k builds (not sure what the z8k 
did but it certainly didn't build a GDB :-).  I encountered one build 
problem but I suspect it stems from me pruning the number of #include 
"serial.h"s.

	Andrew
2001-07-10  Andrew Cagney  <ac131313@redhat.com>

	* Makefile.in (remote-bug.o): Depends on serial.h.
	* remote-bug.c: Include "serial.h".
	* MAINTAINERS: Mark m88k target as buildable.
	* TODO: Update.

Index: MAINTAINERS
===================================================================
RCS file: /cvs/src/src/gdb/MAINTAINERS,v
retrieving revision 1.106
diff -p -r1.106 MAINTAINERS
*** MAINTAINERS	2001/07/02 19:40:47	1.106
--- MAINTAINERS	2001/07/10 22:30:02
*************** maintainer works with the native maintai
*** 97,103 ****
  	m68k		--target=m68k-aout,m68k-coff,m68k-elf ,-Werror
  			Maintenance only
  
! 	m88k		(--target=m88k broken)
  			Known problem in 5.1
  			Maintenance only
  
--- 97,103 ----
  	m68k		--target=m68k-aout,m68k-coff,m68k-elf ,-Werror
  			Maintenance only
  
! 	m88k		--target=m88k ,-Werror
  			Known problem in 5.1
  			Maintenance only
  
Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/gdb/Makefile.in,v
retrieving revision 1.93
diff -p -r1.93 Makefile.in
*** Makefile.in	2001/07/10 21:06:34	1.93
--- Makefile.in	2001/07/10 22:30:03
*************** rdi-share/libangsd.a:	force
*** 1833,1839 ****
  remote-rdp.o: remote-rdp.c $(defs_h) $(gdbcore_h) \
  	$(inferior_h) $(gdb_string_h)
  
! remote-bug.o: remote-bug.c $(defs_h) $(gdbcore_h) \
  	$(inferior_h) target.h terminal.h $(remote_utils_h) $(gdb_string_h) \
  	$(regcache_h)
  
--- 1833,1839 ----
  remote-rdp.o: remote-rdp.c $(defs_h) $(gdbcore_h) \
  	$(inferior_h) $(gdb_string_h)
  
! remote-bug.o: remote-bug.c $(defs_h) $(gdbcore_h) serial.h \
  	$(inferior_h) target.h terminal.h $(remote_utils_h) $(gdb_string_h) \
  	$(regcache_h)
  
Index: TODO
===================================================================
RCS file: /cvs/src/src/gdb/TODO,v
retrieving revision 1.92
diff -p -r1.92 TODO
*** TODO	2001/07/07 17:39:35	1.92
--- TODO	2001/07/10 22:30:59
*************** was occuring in the opcodes directory.
*** 58,69 ****
  
  --
  
- m88k
- 
- The m88k has suffered bit rot and is known to not build.
- 
- --
- 
  The BFD directory requires bug-fixed AUTOMAKE et.al.
  
  AUTOMAKE 1.4 incorrectly set the TEXINPUTS environment variable.  It
--- 58,63 ----
Index: remote-bug.c
===================================================================
RCS file: /cvs/src/src/gdb/remote-bug.c,v
retrieving revision 1.18
diff -p -r1.18 remote-bug.c
*** remote-bug.c	2001/05/04 04:15:26	1.18
--- remote-bug.c	2001/07/10 22:31:00
***************
*** 35,40 ****
--- 35,41 ----
  #include "gdbcore.h"
  #include "gdbcmd.h"
  
+ #include "serial.h"
  #include "remote-utils.h"
  
  /* External data declarations */

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]