This is the mail archive of the gdb-patches@sourceware.cygnus.com mailing list for the GDB project. See the GDB home page for more information.


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

gdb-4.17.86 sysV68 patches


To be able to compile gdb-4-17.86 on sysV68 R3V7.1, I needed to apply the
following patches :

1) In gdb

Tue Mar 23 17:22:57 1999  Philippe De Muyter  <phdm@macqel.be>

	* remote.c, parse.c : Include `ctype.h'.

2) In gdb/testsuite

Tue Mar 23 17:22:57 1999  Philippe De Muyter  <phdm@macqel.be>

	* gdb.base/call-rt-st.c, gdb.base/call-ar-st.c : Include `string.h',
	not `strings.h'.

--- ./gdb/testsuite/gdb.base/call-rt-st.c	Tue Mar 23 17:21:02 1999
+++ ./gdb/testsuite/gdb.base/call-rt-st.c	Tue Mar 23 13:10:45 1999
@@ -1,6 +1,6 @@
 #include <stdio.h>
 #include <stdlib.h>
-#include <strings.h>
+#include <string.h>
 
 /**************************************************************************
  * TESTS :
--- ./gdb/testsuite/gdb.base/call-ar-st.c	Tue Mar 23 17:21:03 1999
+++ ./gdb/testsuite/gdb.base/call-ar-st.c	Tue Mar 23 13:21:25 1999
@@ -1,7 +1,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <strings.h>
+#include <string.h>
 
 /**************************************************************************
  * TESTS :
--- ./gdb/remote.c	Tue Mar 23 17:21:04 1999
+++ ./gdb/remote.c	Tue Mar 23 12:09:10 1999
@@ -187,6 +187,7 @@
 
 #include "defs.h"
 #include "gdb_string.h"
+#include <ctype.h>
 #include <fcntl.h>
 #include "frame.h"
 #include "inferior.h"
--- ./gdb/parse.c	Tue Mar 23 17:21:04 1999
+++ ./gdb/parse.c	Tue Mar 23 12:09:41 1999
@@ -30,6 +30,7 @@
    
 #include "defs.h"
 #include "gdb_string.h"
+#include <ctype.h>
 #include "symtab.h"
 #include "gdbtypes.h"
 #include "frame.h"