From e704cf435b5651a239d58ab5690a2013eda17036 Mon Sep 17 00:00:00 2001 From: "K. Richard Pixley" Date: Thu, 24 Jun 1993 20:53:06 +0000 Subject: [PATCH] * config/i386/ncr3000.mh, config/i386/i386v4.mh, config/i386/i386sol2.mh, config/m68k/hp300hpux.mh, config/m68k/amix.mh, config/mips/irix[34].mh, config/m88k/delta88.mh, config/sparc/sun4sol2.mh (ALLOCA, ALLOCA1): macros removed. * config/mips/decstation.mh, config/rs6000/rs6000.mh (MMALLOC_LIB): renamed to MMALLOC. --- gdb/config/m68k/amix.mh | 10 ---------- gdb/config/m68k/hp300hpux.mh | 2 -- gdb/config/m88k/delta88.mh | 2 -- gdb/config/mips/decstation.mh | 2 +- gdb/config/mips/irix3.mh | 2 -- gdb/config/mips/irix4.mh | 2 -- gdb/config/sparc/sun4sol2.mh | 10 ---------- 7 files changed, 1 insertion(+), 29 deletions(-) diff --git a/gdb/config/m68k/amix.mh b/gdb/config/m68k/amix.mh index 118661921f3..b445d436f00 100644 --- a/gdb/config/m68k/amix.mh +++ b/gdb/config/m68k/amix.mh @@ -7,16 +7,6 @@ SYSV_DEFINE=-DSYSV REGEX=regex.o REGEX1=regex.o -# We need to find alloca() somewhere. Gcc has one built in, but most other -# compilers don't. Using the one in /usr/ucblib/libucb.a is tricky because -# we have to be careful not to pull in anything else from the library (lots -# of things are broken in most SVR4 versions). The best solution is to just -# compile alloca.c and link it into the executable. If we end up not needing -# it, then the code is just dead. Once alloca.c moves to libiberty, then we -# can eliminate this semi-kludge. -ALLOCA=alloca.o -ALLOCA1=alloca.o - # SVR4 comes standard with terminfo, and in some implementations, the # old termcap descriptions are incomplete. So ensure that we use the # new terminfo interface and latest terminal descriptions. diff --git a/gdb/config/m68k/hp300hpux.mh b/gdb/config/m68k/hp300hpux.mh index 825311f4909..71940e521a8 100644 --- a/gdb/config/m68k/hp300hpux.mh +++ b/gdb/config/m68k/hp300hpux.mh @@ -11,5 +11,3 @@ NATDEPFILES= infptrace.o inftarg.o fork-child.o hp300ux-nat.o SYSV_DEFINE=-DSYSV REGEX=regex.o REGEX1=regex.o -ALLOCA=alloca.o -ALLOCA1=alloca.o diff --git a/gdb/config/m88k/delta88.mh b/gdb/config/m88k/delta88.mh index 5cfbce49c81..ea51e5fcad3 100644 --- a/gdb/config/m88k/delta88.mh +++ b/gdb/config/m88k/delta88.mh @@ -5,8 +5,6 @@ NAT_FILE= nm-m88k.h NATDEPFILES= exec.o infptrace.o inftarg.o fork-child.o m88k-nat.o REGEX=regex.o REGEX1=regex.o -ALLOCA=alloca.o -ALLOCA1=alloca.o # Have to use /bin/nm because a bfd nm won't do the right thing MUNCH_DEFINE=MUNCH_NM=/bin/nm M_INSTALL=cp gdb.z $(ddestdir)/man/man1 diff --git a/gdb/config/mips/decstation.mh b/gdb/config/mips/decstation.mh index 27cf5fd8a74..dc55b5b87db 100644 --- a/gdb/config/mips/decstation.mh +++ b/gdb/config/mips/decstation.mh @@ -7,5 +7,5 @@ NATDEPFILES= infptrace.o inftarg.o corelow.o mips-nat.o fork-child.o # We can't use MMALLOC because the DECstation RPC library can't cope # with a malloc(0) that returns 0. Besides, it's useless on a machine # without a real mmap(). -MMALLOC_LIB = +MMALLOC = MMALLOC_DISABLE = -DNO_MMALLOC diff --git a/gdb/config/mips/irix3.mh b/gdb/config/mips/irix3.mh index 0d93c2ecc3b..0a7b7b417ac 100644 --- a/gdb/config/mips/irix3.mh +++ b/gdb/config/mips/irix3.mh @@ -3,7 +3,5 @@ XDEPFILES= XM_FILE= xm-irix3.h NAT_FILE= nm-irix3.h NATDEPFILES= fork-child.o corelow.o infptrace.o inftarg.o mips-nat.o -ALLOCA=alloca.o -ALLOCA1=alloca.o MUNCH_DEFINE=-B XM_CLIBS=-lbsd diff --git a/gdb/config/mips/irix4.mh b/gdb/config/mips/irix4.mh index f93e6be864e..f3a2b2f4fe1 100644 --- a/gdb/config/mips/irix4.mh +++ b/gdb/config/mips/irix4.mh @@ -3,8 +3,6 @@ XDEPFILES= XM_FILE= xm-irix4.h NAT_FILE= nm-irix4.h NATDEPFILES= fork-child.o procfs.o irix4-nat.o corelow.o -ALLOCA=alloca.o -ALLOCA1=alloca.o MUNCH_DEFINE=-B XM_CLIBS=-lbsd -lsun INSTALL = cp diff --git a/gdb/config/sparc/sun4sol2.mh b/gdb/config/sparc/sun4sol2.mh index 8c97f9864e7..b5e623bca08 100644 --- a/gdb/config/sparc/sun4sol2.mh +++ b/gdb/config/sparc/sun4sol2.mh @@ -8,16 +8,6 @@ SYSV_DEFINE=-DSYSV REGEX=regex.o REGEX1=regex.o -# We need to find alloca() somewhere. Gcc has one built in, but most other -# compilers don't. Using the one in /usr/ucblib/libucb.a is tricky because -# we have to be careful not to pull in anything else from the library (lots -# of things are broken in most SVR4 versions). The best solution is to just -# compile alloca.c and link it into the executable. If we end up not needing -# it, then the code is just dead. Once alloca.c moves to libiberty, then we -# can eliminate this semi-kludge. -####ALLOCA=alloca.o -####ALLOCA1=alloca.o - # SVR4 comes standard with terminfo, and in some implementations, the # old termcap descriptions are incomplete. So ensure that we use the # new terminfo interface and latest terminal descriptions. -- 2.30.2