${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).
-<<<<<<< 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
* 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
* 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
* 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.
# -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.
#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)
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));
/* 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)
free ((PTR)cmdarg);
/* Read in the old history after all the command files have been read. */
- initialize_history();
+ init_history();
if (batch)
{
\f
static void
-initialize_cmd_lists ()
+init_cmd_lists ()
{
cmdlist = NULL;
infolist = NULL;
*/
static void
-initialize_history()
+init_history()
{
char *tmpenv;
}
static void
-initialize_main ()
+init_main ()
{
struct cmd_list_element *c;
/* 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;
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