1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
diff -r -d -u othersources.orig/gdb-4.16/gdb/Makefile.in othersources/gdb-4.16/gdb/Makefile.in
--- othersources.orig/gdb-4.16/gdb/Makefile.in Sun Oct 18 21:04:55 1998
+++ othersources/gdb-4.16/gdb/Makefile.in Mon Oct 19 13:13:51 1998
@@ -55,7 +55,7 @@
# Flags that describe where you can find the termcap library.
# This can be overridden in the host Makefile fragment file.
-TERMCAP = -ltermcap
+TERMCAP = -lncurses
# If you are compiling with GCC, make sure that either 1) You have the
# fixed include files where GCC can reach them, or 2) You use the
diff -r -d -u othersources.orig/gdb-4.16/readline/Makefile.in othersources/gdb-4.16/readline/Makefile.in
--- othersources.orig/gdb-4.16/readline/Makefile.in Tue Oct 10 15:44:02 1995
+++ othersources/gdb-4.16/readline/Makefile.in Mon Oct 19 13:13:38 1998
@@ -166,7 +166,7 @@
xmalloc.o: xmalloc.c
libtest: libreadline.a libtest.c
- $(CC) -o libtest $(CFLAGS) $(H_CFLAGS) $(DEBUG_FLAGS) $(USG) -I. $(LOCAL_INCLUDES) $(CPPFLAGS) $(READLINE_DEFINES) -L. libtest.c -lreadline -ltermcap
+ $(CC) -o libtest $(CFLAGS) $(H_CFLAGS) $(DEBUG_FLAGS) $(USG) -I. $(LOCAL_INCLUDES) $(CPPFLAGS) $(READLINE_DEFINES) -L. libtest.c -lreadline -lncurses
readline: readline.c history.o keymaps.o funmap.o readline.h chardefs.h vi_mode.o
$(CC) $(CFLAGS) $(CPPFLAGS) $(READLINE_DEFINES) \
|