See ChangeLog.
authorJohn Gilmore <gnu@cygnus>
Sat, 4 May 1991 05:07:07 +0000 (05:07 +0000)
committerJohn Gilmore <gnu@cygnus>
Sat, 4 May 1991 05:07:07 +0000 (05:07 +0000)
gdb/ChangeLog
gdb/Makefile.dist
gdb/Makefile.in
gdb/remote.c

index ae776bbb296575c2a8e9b429b45e65b1bec8b6bf..35cad84bb6b9297ecff97db067c45dde2dca18cd 100644 (file)
@@ -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)
 
index fc7efb172c6483628f81aafa589e0c576bc41fff..66afd178efbfbb2faa7d6491823b6bb6334386ac 100755 (executable)
@@ -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}
index fc7efb172c6483628f81aafa589e0c576bc41fff..66afd178efbfbb2faa7d6491823b6bb6334386ac 100644 (file)
@@ -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}
index 3f3d91ae5841179e4684a1c1b614da32134d6df5..6a2dd7c98ee366c9e7ac8501c83f061d575758b2 100644 (file)
@@ -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 ();