aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1991-05-04 05:07:07 +0000
committerJohn Gilmore <gnu@cygnus>1991-05-04 05:07:07 +0000
commit77ac93922c95502680f05f799f78e1426a766141 (patch)
treed3e03aabf7f5734351e4851d2930aa748bfafd6f /gdb
parent7c884bf00367d2d4bff476e7ffccf551329635fa (diff)
downloadfsf-binutils-gdb-77ac93922c95502680f05f799f78e1426a766141.zip
fsf-binutils-gdb-77ac93922c95502680f05f799f78e1426a766141.tar.gz
fsf-binutils-gdb-77ac93922c95502680f05f799f78e1426a766141.tar.bz2
See ChangeLog.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog13
-rwxr-xr-xgdb/Makefile.dist7
-rw-r--r--gdb/Makefile.in7
-rw-r--r--gdb/remote.c2
4 files changed, 19 insertions, 10 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index ae776bb..35cad84 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,7 +1,16 @@
+Fri May 3 22:01:56 1991 John Gilmore (gnu at cygint.cygnus.com)
+
+ * remote.c: Remove decls of memory_insert_breakpoint
+ and memory_remove_breakpoint, no longer used. (Suggestion of
+ Jan Norden).
+
+ * Makefile.dist: use ${subdir} in paths of BFD and LIBIBERTY,
+ to make it easier to interface to "configure"'d libraries.
+
Fri May 3 13:10:01 PDT 1991 Roland Pesch (pesch at fowanton.cygnus.com)
- * valprint.c introduce "set p", "set pr", "show p" and "show pr" as
- aliases for set/show print.
+ * valprint.c: introduce "set p", "set pr", "show p" and "show pr" as
+ aliases for set/show print.
Thu May 2 11:22:02 1991 Jim Kingdon (kingdon at cygint.cygnus.com)
diff --git a/gdb/Makefile.dist b/gdb/Makefile.dist
index fc7efb1..66afd17 100755
--- a/gdb/Makefile.dist
+++ b/gdb/Makefile.dist
@@ -61,7 +61,8 @@ MALLOC_CFLAGS =
INCLUDE_DIR = ${srcdir}/../include
INCLUDE_DEP = $$(INCLUDE_DIR)
-# Where is the BFD library? Traditionally ../bfd or ./bfd
+# Where is the source dir for the BFD library? Traditionally ../bfd or ./bfd
+# (When we want the binary library built from it, we use ${BFD_DIR}${subdir}.)
BFD_DIR = ${srcdir}/../bfd
BFD_DEP = $$(BFD_DIR)
@@ -81,7 +82,7 @@ CFLAGS = ${GLOBAL_CFLAGS} ${PROFILE_CFLAGS} ${MALLOC_CFLAGS} ${INCLUDE_CFLAGS}
LDFLAGS = $(CFLAGS)
# Where is the "-liberty" library, containing getopt and obstack?
-LIBIBERTY = ${srcdir}/../libiberty/libiberty.a
+LIBIBERTY = ${srcdir}/../libiberty${subdir}/libiberty.a
# Flags that describe where you can find the termcap library.
# You may need to make other arrangements for USG.
@@ -94,7 +95,7 @@ TERMCAP = -ltermcap
# {X,T}M_CLIBS, if defined, has system-dependent libs
# For example, -lPW for System V to get alloca().
# FIXME STOPGAP FOR BFD LIBRARY: BFD stuff
-CLIBS = ${TERMCAP} $(XM_CLIBS) ${TM_CLIBS} ${BFD_DIR}/libbfd.a \
+CLIBS = ${TERMCAP} $(XM_CLIBS) ${TM_CLIBS} ${BFD_DIR}${subdir}/libbfd.a \
${LIBIBERTY}
CDEPS = ${XM_CDEPS} ${TM_CDEPS} ${BFD_DIR}/libbfd.a \
${LIBIBERTY}
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index fc7efb1..66afd17 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -61,7 +61,8 @@ MALLOC_CFLAGS =
INCLUDE_DIR = ${srcdir}/../include
INCLUDE_DEP = $$(INCLUDE_DIR)
-# Where is the BFD library? Traditionally ../bfd or ./bfd
+# Where is the source dir for the BFD library? Traditionally ../bfd or ./bfd
+# (When we want the binary library built from it, we use ${BFD_DIR}${subdir}.)
BFD_DIR = ${srcdir}/../bfd
BFD_DEP = $$(BFD_DIR)
@@ -81,7 +82,7 @@ CFLAGS = ${GLOBAL_CFLAGS} ${PROFILE_CFLAGS} ${MALLOC_CFLAGS} ${INCLUDE_CFLAGS}
LDFLAGS = $(CFLAGS)
# Where is the "-liberty" library, containing getopt and obstack?
-LIBIBERTY = ${srcdir}/../libiberty/libiberty.a
+LIBIBERTY = ${srcdir}/../libiberty${subdir}/libiberty.a
# Flags that describe where you can find the termcap library.
# You may need to make other arrangements for USG.
@@ -94,7 +95,7 @@ TERMCAP = -ltermcap
# {X,T}M_CLIBS, if defined, has system-dependent libs
# For example, -lPW for System V to get alloca().
# FIXME STOPGAP FOR BFD LIBRARY: BFD stuff
-CLIBS = ${TERMCAP} $(XM_CLIBS) ${TM_CLIBS} ${BFD_DIR}/libbfd.a \
+CLIBS = ${TERMCAP} $(XM_CLIBS) ${TM_CLIBS} ${BFD_DIR}${subdir}/libbfd.a \
${LIBIBERTY}
CDEPS = ${XM_CDEPS} ${TM_CDEPS} ${BFD_DIR}/libbfd.a \
${LIBIBERTY}
diff --git a/gdb/remote.c b/gdb/remote.c
index 3f3d91a..6a2dd7c 100644
--- a/gdb/remote.c
+++ b/gdb/remote.c
@@ -83,8 +83,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <signal.h>
-extern int memory_insert_breakpoint ();
-extern int memory_remove_breakpoint ();
extern void add_syms_addr_command ();
extern struct value *call_function_by_hand();
extern void start_remote ();