diff options
author | Fred Fish <fnf@specifix.com> | 1991-12-23 03:43:48 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1991-12-23 03:43:48 +0000 |
commit | 431df2ebacd5349884e9cb4b116bc193f59717a6 (patch) | |
tree | d6c75b2903de9c3db4923808d9b3cc408f75bd7c /gdb/Makefile.in | |
parent | a9b0d1aece41530dd33bde4280441c3101bd5f03 (diff) | |
download | gdb-431df2ebacd5349884e9cb4b116bc193f59717a6.zip gdb-431df2ebacd5349884e9cb4b116bc193f59717a6.tar.gz gdb-431df2ebacd5349884e9cb4b116bc193f59717a6.tar.bz2 |
* solib.c (locate_base): Fix uninitialized variable that was
causing return of random value to callee.
* config/mh-amix, config/mh-i386v4: Change to find alloca by
compiling and linking alloca.c, even when it is not strictly
required. Also arrange to link with -ltermlib rather than
-ltermcap.
* Makefile.in: Move TERMCAP definition to prior to inclusion
of host makefile fragments so it can be overridden.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index bf84c42..b796a76 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -31,7 +31,7 @@ man6dir = $(mandir)/man6 man7dir = $(mandir)/man7 man8dir = $(mandir)/man8 man9dir = $(mandir)/man9 -infodir = $(prefix)/info +infodir = $(datadir)/info includedir = $(prefix)/include docdir = $(datadir)/doc @@ -45,6 +45,10 @@ AR = ar AR_FLAGS = qv RANLIB = ranlib +# Flags that describe where you can find the termcap library. +# This can be overridden in the host Makefile fragment file. +TERMCAP = -ltermcap + #### Host, target, and site specific Makefile fragments come in here. ### @@ -140,10 +144,6 @@ LDFLAGS = $(CFLAGS) LIBIBERTY_DIR = ${srcdir}/../libiberty LIBIBERTY = $(unsubdir)/../libiberty${subdir}/libiberty.a -# Flags that describe where you can find the termcap library. -# You may need to make other arrangements for USG. -TERMCAP = -ltermcap - # The config/mh-* file must define REGEX and REGEX1 on USG machines. # If your sysyem is missing alloca(), or, more likely, it's there but # it doesn't work, define ALLOCA & ALLOCA1 too. |