* Makefile.in (INTERNAL_CFLAGS): Include ../include as well as
authorJim Kingdon <jkingdon@engr.sgi.com>
Fri, 18 Jun 1993 02:32:27 +0000 (02:32 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Fri, 18 Jun 1993 02:32:27 +0000 (02:32 +0000)
${srcdir}/../include.

* config/m88k/xm-delta88.h: Comment out unused defines which conflict
with system headers.
* printcmd.c (printf_command): Cast second arg to vprintf to PTR.
Use VPRINTF macro if defined.
* config/m88k/xm-delta88.h: Define VPRINTF.  Include <sys/siginfo.h>.
Define TIOC{GETC,GLTC}_BROKEN.
* m88k-nat.c: Uncomment include of <sys/ptrace.h>.
* main.c: Rename initialize_{main,cmd_lists,history} to init_* to
make things easier on munch (apparently this matters on
the delta88 with svr3).

gdb/ChangeLog
gdb/Makefile.in
gdb/m88k-nat.c
gdb/main.c
gdb/printcmd.c

index b5a6bfe5e5fe4410318017bc733789a77cd810f2..62fbdd0429119b220c2656a5e90258d93f83132b 100644 (file)
@@ -1,5 +1,19 @@
-<<<<<<< ChangeLog
-<<<<<<< ChangeLog
+Thu Jun 17 17:29:30 1993  Jim Kingdon  (kingdon@lisa.cygnus.com)
+
+       * Makefile.in (INTERNAL_CFLAGS): Include ../include as well as
+       ${srcdir}/../include.
+
+       * config/m88k/xm-delta88.h: Comment out unused defines which conflict
+       with system headers.
+       * printcmd.c (printf_command): Cast second arg to vprintf to PTR.
+       Use VPRINTF macro if defined.
+       * config/m88k/xm-delta88.h: Define VPRINTF.  Include <sys/siginfo.h>.
+       Define TIOC{GETC,GLTC}_BROKEN.
+       * m88k-nat.c: Uncomment include of <sys/ptrace.h>.
+       * main.c: Rename initialize_{main,cmd_lists,history} to init_* to
+       make things easier on munch (apparently this matters on
+       the delta88 with svr3).
+
 Thu Jun 17 16:53:56 1993  david d `zoo' zuhn (zoo@cygnus.com)
        
        * Makefile.in: canonicalize install.sh; for use within
@@ -9,8 +23,6 @@ Tue Jun 15 17:01:23 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
 
        * Makefile.in: remove parentdir support; use INSTALL_XFORM
 
-=======
-=======
 Thu Jun 17 15:08:35 1993  Steve Chamberlain  (sac@phydeaux.cygnus.com)
 
        * configure.in (alpha-*-osf*), config/alpha/alpha-osf.mh: New
@@ -22,7 +34,6 @@ Thu Jun 17 15:08:35 1993  Steve Chamberlain  (sac@phydeaux.cygnus.com)
        * config/sh/tm-sh.h (REGISTER_NAMES): Know about the news ones the
        simulator defines.
 
->>>>>>> 1.1384
 Wed Jun 16 16:08:18 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
 
        * NEWS: tracking user visible changes starting with
@@ -41,7 +52,6 @@ Wed Jun 16 12:21:49 1993  Fred Fish  (fnf@cygnus.com)
        * alldeps.mak, depend:  Update to latest automatically built
        versions.
 
->>>>>>> 1.1383
 Tue Jun 15 12:26:05 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
 
        * remote-vx.c: include gdbcmd.h for setlist.
index a423a1b84a7991744036a16e73a760622c7d61dd..3bf56afbf826d442783c6c9e255079d3997542f6 100644 (file)
@@ -128,7 +128,8 @@ RL_LIB = ./../readline${subdir}/libreadline.a
 # -I. for config files.
 # -I${srcdir} possibly for regex.h also.
 # -I${srcdir}/config for more generic config files.
-INCLUDE_CFLAGS = -I. -I${srcdir} -I${srcdir}/config -I$(INCLUDE_DIR)
+INCLUDE_CFLAGS = -I. -I${srcdir} -I${srcdir}/config \
+       -I$(INCLUDE_DIR) -I../include
 
 # M{H,T}_CFLAGS, if defined, has host- and target-dependent CFLAGS
 # from the config/ directory.
index bbbceb8c2ee199fe488aea4b47b380126ac2fab6..189c18df686e55bc9bd1c3dee92113fc50649172 100644 (file)
@@ -44,7 +44,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "value.h"
 
 #ifdef DELTA88
-/* #include <sys/ptrace.h> */
+#include <sys/ptrace.h>
 
 /* define offsets to the pc instruction offsets in ptrace_user struct */
 #define SXIP_OFFSET ((char *)&u.pt_sigframe.sig_sxip - (char *)&u)
index d842197935f1695fe97c6aa361d4693c91ab8767..5e00b8639ad8437ab5e111aa146c4737559f4e86 100644 (file)
@@ -78,13 +78,13 @@ static void
 quit_command PARAMS ((char *, int));
 
 static void
-initialize_main PARAMS ((void));
+init_main PARAMS ((void));
 
 static void
-initialize_history PARAMS ((void));
+init_history PARAMS ((void));
 
 static void
-initialize_cmd_lists PARAMS ((void));
+init_cmd_lists PARAMS ((void));
 
 static void
 float_handler PARAMS ((int));
@@ -729,9 +729,9 @@ GDB manual (available as on-line info or a printed manual).\n", stderr);
 
   /* Run the init function of each source file */
 
-  initialize_cmd_lists ();     /* This needs to be done first */
+  init_cmd_lists ();   /* This needs to be done first */
   initialize_all_files ();
-  initialize_main ();          /* But that omits this file!  Do it now */
+  init_main ();                /* But that omits this file!  Do it now */
   init_signals ();
 
   if (!quiet)
@@ -882,7 +882,7 @@ GDB manual (available as on-line info or a printed manual).\n", stderr);
   free ((PTR)cmdarg);
 
   /* Read in the old history after all the command files have been read. */
-  initialize_history();
+  init_history();
 
   if (batch)
     {
@@ -2369,7 +2369,7 @@ batch_mode ()
 
 \f
 static void
-initialize_cmd_lists ()
+init_cmd_lists ()
 {
   cmdlist = NULL;
   infolist = NULL;
@@ -2401,7 +2401,7 @@ initialize_cmd_lists ()
  */
 
 static void
-initialize_history()
+init_history()
 {
   char *tmpenv;
 
@@ -2426,7 +2426,7 @@ initialize_history()
 }
 
 static void
-initialize_main ()
+init_main ()
 {
   struct cmd_list_element *c;
   
index d40a2f81380f36d875f2c85395f154d2977b78e7..54b5d942bcb85eb317d11ac109892c534dd72102 100644 (file)
@@ -1815,6 +1815,7 @@ printf_command (arg, from_tty)
   /* There is not a standard way to make a va_list, so we need
      to do various things for different systems.  */
 #if defined (__INT_VARARGS_H)
+  /* This is defined by an 88k using gcc1.  Do other machines use it?  */
   {
     va_list list;
 
@@ -1824,7 +1825,11 @@ printf_command (arg, from_tty)
     vprintf (string, list);
   }
 #else /* No __INT_VARARGS_H.  */
-  vprintf (string, arg_bytes);
+#ifdef VPRINTF
+  VPRINTF (string, arg_bytes);
+#else /* No VPRINTF.  */
+  vprintf (string, (PTR) arg_bytes);
+#endif /* No VPRINTF.  */
 #endif /* No __INT_VARARGS_H.  */
 }
 \f