mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-28 20:43:45 +08:00
* 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).
This commit is contained in:
parent
1d2bb44589
commit
fc61e9eeec
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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)
|
||||
|
18
gdb/main.c
18
gdb/main.c
@ -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 ()
|
||||
|
||||
|
||||
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;
|
||||
|
||||
|
@ -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. */
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user