]>
Commit | Line | Data |
---|---|---|
460845ab DT |
1 | Wed Jan 6 12:28:35 1999 David Taylor <[email protected]> |
2 | ||
3 | * configure.in: Add an --enable-tui argument. Construct | |
4 | tui/Makefile from tui/Makefile.in. Use AM_PROG_CC_STDC. If we | |
5 | have the GUI, then we need this to process libgui.h. | |
6 | (ENABLE_CFLAGS): define and export BUILD_TUI. | |
7 | (AC_CHECK_HEADERS): Add check for term.h. | |
8 | ||
9 | * configure.host (hppa-*-hpux10.20, hppa-*-hpux11.0*): New configs. | |
10 | ||
11 | * config.in, configure : regenerated. | |
12 | ||
13 | * Makefile.in: Allow the TUI code to be conditionally enabled. | |
14 | (TUI_LIBRARY): New variable, value are set by the configuration | |
15 | script. Set to the empty string when the TUI isn't enabled. | |
16 | (gdb$(GDBEXT)): Use those, instead of referring to all-tui and | |
17 | tui/libtui.a directly. | |
18 | (BUILD_TUI): build the tui -- only when configured with | |
19 | --enable-tui. | |
20 | (YLWRAP): use ylwrap to avoid problems on systems w/o bison. | |
21 | (gdb$(EXEEXT)): make it dependent on BUILD_TUI. | |
22 | (all-tui): remove dependency from phony target. | |
23 | (c-exp.tab.c): use ylwrap instead of bison. | |
24 | (jv-exp.tab.c): ditto. | |
25 | (f-exp.tab.c): ditto. | |
26 | (m2-exp.tab.c): ditto. | |
27 | (ALLDEPFILES): add somread.c, hp-psymtab-read.c, hp-symtab-read.c. | |
28 | (SFILES): remove the above files | |
29 | (COMMON_OBS): remove somread.o | |
30 | (SFILES): Add the tui files to this, so they get included in etags | |
31 | tables. | |
32 | (gdb$(EXEEXT)): Add all-tui to the list of dependencies, and add | |
33 | tui/libtui.a to the link list. | |
34 | (all-tui): New rule, which does a recursive make in the tui | |
35 | subdir. | |
36 | (tui/libtui.a): When recursing, pass down ${FLAGS_TO_PASS}. And | |
37 | don't echo the make command. This is closer to what the other | |
38 | recursions do. | |
39 | (HFILES_NO_SRCDIR): add hpread.h | |
40 | (COMMON_OBS): add hp-psymtab-read.o, hp-symtab-read.o | |
41 | (SFILES): add hp-psymtab-read.c, hp-symtab-read.c add rules for | |
42 | the new files. Remove hpread.c, hpread.o | |
43 | (gdb$(EXEEXT)): Depend on the actual tui library, not on a | |
44 | fictitious target. Since the fictitious target never existed, | |
45 | make would always relink. | |
46 | (tui/libtui.a): Always recurse to make sure the library is up to | |
47 | date. | |
48 | ||
7517f04b SS |
49 | Wed Jan 6 12:05:12 1999 Stan Shebs <[email protected]> |
50 | ||
51 | * remote.c: Pacify --enable-build-warnings, reformat code | |
52 | to conform to standards, fix spelling errors. | |
53 | (ishex, stubhex, record_currthread, etc): Declare. | |
54 | (ishex, stubhex): Declare char arg as int. | |
55 | (pack_string): Comment out, never used but possibly useful. | |
56 | (threadref_to_int, remote_get_threadinfo, etc): Make static. | |
57 | ||
34733701 DT |
58 | Wed Jan 6 11:43:32 1999 David Taylor <[email protected]> |
59 | ||
60 | The following changes were made by Elena Zannoni | |
61 | <[email protected]> and Edith Epstein <[email protected]> as | |
62 | part of a project to merge in changes made by HP. | |
63 | ||
64 | * c-exp.y: use external flag hp_som_som_object_present to decide | |
65 | whether code was compiled by HP's compilers. Add two new C++ | |
66 | tokens for true and false. | |
67 | (yylex): check for template name is done differently for the | |
68 | HP/aCC compiler case. Change some of the template processing code | |
69 | for handling HP aCC templates. Handle true and false tokens. | |
70 | ||
b53a1514 MS |
71 | Tue Jan 5 11:13:36 1999 Michael Snyder <[email protected]> |
72 | ||
73 | * remote.c (record_curthread): Must not modify inferior_pid when | |
7517f04b SS |
74 | called from wait_for_inferior. Instead, if a new thread-id is |
75 | detected, call add_thread. | |
76 | (MAGIC_NULL_PID): new macro, use instead of the magic number | |
77 | "42000". | |
78 | (remote_find_new_threads): if inferior_pid is unknown, get and use | |
79 | the current thread id. | |
b53a1514 | 80 | (remote_start_remote): on connecting, attempt to get the current |
7517f04b SS |
81 | thread id for inferior_pid. |
82 | (remote_resume): If pid == -1, then resume any-thread (not the | |
83 | current thread specifically). Also some cosmetic fixups. | |
b53a1514 MS |
84 | |
85 | * thread.c (info_threads_command): don't initialize current_pid | |
86 | until after call to FIND_NEW_THREADS (which may change inferior_pid). | |
87 | Also some cosmetic fixups. | |
88 | * infrun.c: cosmetic fixups and casts to avoid warnings. | |
89 | * infcmd.c: cosmetic fixups, mainly long lines. | |
90 | ||
2819d3d6 DT |
91 | Tue Jan 5 11:55:57 1999 David Taylor <[email protected]> |
92 | ||
49082556 DT |
93 | * target.c (noprocess): terminate sentence with a period. |
94 | * breakpoint.c (catch_command_1): ditto. | |
95 | ||
eceede31 DT |
96 | * c-valprint.c (c_value_print): remove hack^2 from HP; it causes |
97 | testsuite losses with no real gain. | |
98 | ||
2819d3d6 DT |
99 | * inferior.h (START_INFERIOR_TRAPS_EXPECTED): restore, but only |
100 | if tm-*.h hasn't overridden default value. | |
101 | ||
d951f9e4 JM |
102 | 1999-01-04 Jason Molenda ([email protected]) |
103 | ||
104 | * configure.in: Fix whitespace indentation for --help. | |
105 | * configure: Regenerated. | |
106 | ||
d7f71863 JM |
107 | 1999-01-04 Manuel Bouyer <[email protected]> |
108 | ||
109 | * main.c: Add --write command line option, document -w. | |
110 | * gdb.1: Document --write. | |
111 | ||
f240337a JM |
112 | 1999-01-04 Jason Molenda ([email protected]) |
113 | ||
114 | * configure.in: Require autoconf 2.12.1 or higher. | |
115 | * doc/configure.in: Ditto. | |
116 | * nlm/configure.in: Ditto. | |
117 | * rdi-share/configure.in: Ditto. | |
118 | * testsuite/configure.in: Ditto. | |
119 | * doc/Makefile.in: Don't hardcode $(SHELL). | |
120 | * nlm/Makefile.in: Ditto. | |
121 | * rdi-share/Makefile.in: Ditto. | |
122 | * testsuite/Makefile.in: Ditto. | |
123 | ||
64aa82eb SS |
124 | Mon Jan 4 12:53:03 1999 Stan Shebs <[email protected]> |
125 | ||
126 | * remote-vx.c (init_vx_ops, init_vx_run_ops): Remove unneeded | |
127 | inits of new fields, including ref to bogus field. | |
128 | (vx_ops, vx_run_ops): Make static. | |
129 | ||
3e1d3d67 DT |
130 | Mon Jan 4 15:05:29 1999 David Taylor <[email protected]> |
131 | ||
97bff53b DT |
132 | * inferior.h (START_INFERIOR_TRAPS_EXPECTED): delete, |
133 | already defined in tm.h. | |
134 | ||
3e1d3d67 DT |
135 | * inftarg.c: change <sys/unistd.h> to <unistd.h> and |
136 | conditionalize its inclusion. | |
137 | * infttrace.c: ditto. | |
138 | ||
73ec6020 | 139 | For older changes see ChangeLog-98 |
bd5635a1 RP |
140 | \f |
141 | Local Variables: | |
55d3002f | 142 | mode: change-log |
bd5635a1 RP |
143 | left-margin: 8 |
144 | fill-column: 74 | |
145 | version-control: never | |
146 | End: |