]> git.pld-linux.org Git - packages/gdb.git/blame - gdb-shared-readline.patch
- rebuilt with readline 4.1
[packages/gdb.git] / gdb-shared-readline.patch
CommitLineData
0f840cc8 1diff -urN gdb-4.18-orig/Makefile.in gdb-4.18/Makefile.in
2--- gdb-4.18-orig/Makefile.in Wed Apr 7 21:40:04 1999
3+++ gdb-4.18/Makefile.in Mon May 24 15:21:43 1999
4@@ -552,7 +552,6 @@
5 all-perl \
6 all-prms \
7 all-rcs \
8- all-readline \
9 all-release \
10 all-recode \
11 all-sed \
12@@ -625,7 +624,6 @@
13 check-perl \
14 check-prms \
15 check-rcs \
16- check-readline \
17 check-recode \
18 check-sed \
19 check-send-pr \
20@@ -699,7 +697,6 @@
21 install-perl \
22 install-prms \
23 install-rcs \
24- install-readline \
25 install-recode \
26 install-sed \
27 install-send-pr \
28@@ -863,7 +860,6 @@
29 clean-perl \
30 clean-prms \
31 clean-rcs \
32- clean-readline \
33 clean-release \
34 clean-recode \
35 clean-sed \
36@@ -1555,7 +1551,7 @@
37 all-gcc: all-bison all-byacc all-binutils all-gas all-ld
38 all-bootstrap: all-libiberty all-bison all-byacc all-binutils all-gas all-ld
39 GDB_TK = all-tk all-tcl all-itcl all-tix all-libgui
40-all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-bison all-byacc all-sim $(gdbnlmrequirements) $(GDB_TK)
41+all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-bison all-byacc all-sim $(gdbnlmrequirements) $(GDB_TK)
42 all-gettext:
43 all-gnuserv:
44 configure-target-gperf: $(ALL_GCC)
45@@ -1600,12 +1596,11 @@
46 all-perl:
47 all-prms: all-libiberty
48 all-rcs:
49-all-readline:
50 all-recode: all-libiberty
51 all-sed: all-libiberty
52 all-send-pr: all-prms
53 all-shellutils:
54-all-sim: all-libiberty all-bfd all-opcodes all-readline
55+all-sim: all-libiberty all-bfd all-opcodes
56 all-tar: all-libiberty
57 all-tcl:
58 all-tcl8.1:
59@@ -1786,7 +1781,7 @@
60 SUPPORT_FILES="$(GNATS_SUPPORT_DIRS)"
61
62 .PHONY: gdb.tar.gz
63-GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline sim utils intl
64+GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes sim utils intl
65 gdb.tar.gz: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb
66 $(MAKE) -f Makefile.in taz TOOL=gdb \
67 SUPPORT_FILES="$(GDB_SUPPORT_DIRS)"
68diff -urN gdb-4.18-orig/gdb/Makefile.in gdb-4.18/gdb/Makefile.in
69--- gdb-4.18-orig/gdb/Makefile.in Wed Apr 7 21:00:43 1999
70+++ gdb-4.18/gdb/Makefile.in Mon May 24 15:22:57 1999
71@@ -112,10 +112,12 @@
72 BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
73
74 # Where is the READLINE library? Typically in ../readline.
75-READLINE_DIR = ../readline
76-READLINE = $(READLINE_DIR)/libreadline.a
77-READLINE_SRC = $(srcdir)/$(READLINE_DIR)
78-READLINE_CFLAGS = -I$(READLINE_SRC)/..
79+# Why not use the shared libreadline like everyone else does...
80+# readline 4.0 is better than 2.2 anyway.
81+READLINE_DIR = /usr/include/readline
82+READLINE = -lreadline
83+READLINE_SRC = /usr/include/readline
84+READLINE_CFLAGS = -I/usr/include/readline
85
86 WARN_CFLAGS = @WARN_CFLAGS@
87
This page took 0.24431 seconds and 4 git commands to generate.