summaryrefslogtreecommitdiffstats
path: root/contrib/global/HISTORY
blob: 1f26bbb0fde620a767da9508ce9346a02c7a1bb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
GLOBAL history
--------------

version 1.0	initial version [21-Apr-96]

	global, gtags, btreeop, extended ctags.

version 1.1	only bugfix [2-May-96]

	[fixed bug]
	global	- makes corrupted path name by conversion error.
		- description of exit code in online manual is mistaken.
	btreeop	- cannot treat a long line over BUFSIZ. With the result
		that gtags fails.
	extended ctags - when using -r option, considers a reserved word
		to be a function name. With the result that GRTAGS becomes
		too large.

version 1.2	support of 1.34 nvi [7-Jun-96]

	[changed]
	extended ctags
		- change to use bsearch(3) for searching reserved words.
		- change to consider '__P' as a reserved word.
		- unify the original patch (included in version1.0) and
		  the bugfix patch (included in version1.1).
	[added]
	extended vi
		- VI tag support.

version 1.3	support of GTAGSLIBPATH [28-Jul-96]

	[changed]
	global  - search not only in a source tree but also in library paths
		  specified by environment variable GTAGSLIBPATH.
	extended ctags
		- change print format a little when -x option

version 1.4	support of yacc source file [26-Oct-96]

	[changed]
	extended ctags
		- support of yacc source file.
		- this version of ctags is NOT COMPATIBLE with original one.
		  * search all part of a yacc file for C functions.
		    (original only 3rd part)
		  * no longer considers a yacc rule to be an object.

version 1.5	hypertext generator [12-Dec-96]

	[fixed bug]
	gtags	- treat 'y.tab.c' as a C source.(we should treat only *.y)
	extended vi
		- free stack memory. free(3) in FreeBSD 2.1.5R seems to
		  show a warning message when receive stack address.
		  So it spoils the screen.
	[added]
	htags	- new command (hypertext generator of C source file)
	gtags	- error check code added.

version 1.6	support of 1.76 nvi and reconstruction for other OS [21-Jan-97]

	[changed]
	htags	- cease using <BLOCKQUOTE> because lynx doesn't understand it.
	global,htags
		- replace 'sort -u' with 'sort | uniq' for compatibility reason.
	[fixed bug]
	global	- makes illegal path name when using GTAGSLIBPATH.
	gtags	- error message mistaken.
	[added]
	nvi-1.76.diff
		- patch for nvi 1.76 to make extended vi.
	gctags	- this is the same with extended ctags in older version.
		  now GLOBAL includes BSD ctags in it. so no longer has
		  patch file (ctags.diff).
		  (I brought original ctags from FreeBSD 2.1.5R)

		  Thanks to
			Gary Kline
			Hideki Mori
		  for their advice.

	global	- -a option added.

version 1.7	make suitable for large project (mainly FreeBSD kernel) [17-Feb-97]

	[changed]
	htags	- htags no longer makes frame.html. Index.html offers frame
		  function too.
		- works MUCH faster than previous version.
	[fixed bug]
	htags	- generate path name including '&param'. (It means special
		  charactor in hypertertext.)
		  So, changed internal separator from '&' to '|'.
	[added]
	gtags	- -s option added. If specified, gtags extract ENTRY() and
		  ALTENTRY() from *.[sS] files.
	htags	- support one level nested index. It's always valid for file
		  index when directories found, and valid for function index
		  only when -a option specified.
		- -v and -t option added.
	systags.sh
		- script to make all tags (GTAGS,GRTAGS,HTML) for kernel source.
		  (it is only for FreeBSD and Linux)

version 1.8	fix some bugs, add options and make more portable [5-Apr-97]

	[changed]
	gctags, btreeop, Makefile
		- modify for generic UNIX (Linux, Solaris)
		- modify to quiet compiler.

		Many thanks to
			A.E. Brouwer
			Oleg Checkulaev
			Emile Heyns

	gctags	- modify to treat '\r' at the end of line.
	htags	- changed internal separator from '|' to ' '.
		  because some OS cannot treat '|' in a path.
	[fixed bug]
	htags	- regard a part of path in #include as a reserved word.
		- generate illegal links when same tags exist in a line.
		- insufficient comment detection.

		  Thanks to Jeffrey Friedl. I took his code for complete
		  comment detection.

	gctags	- regard function name as a definition in extern statement.
		- skip macro(no argment) body when -r specified.
	gctags, htags
		- regard 'entry' as a reserved word.
	[added]
	global	- -c (complete) option added.
	htags	- -d tagdir option added.
		- -w option added.

version 1.81	make global to understand 'obj' directory [14-Apr-97]

	[fixed bug]
	extended vi
		- doesn't hand '\' in a pattern to global.
	[changed]
	global
		- can find tag file in obj directory.

version 1.9	support of 1.79 nvi and some additional options [21-Apr-97]

	[fixed bug]
	htags   - doesn't keep the code formatted correctly.
		  So, changed to convert tabs in source files into spaces.
		  (expand(1) needed)
		
		  Thanks to Andy Newman for his bug report and fix method.

		- cannot print error message correctly.
	[changed]
	gctags, btreeop
		- modify for SunOS 4.1.3.

		  Thanks to Yoshiharu Ito for his information.

	[added]
	btreeop - META record is available.
		  (It will be used in the furture.)
		- -A and -D option added.
		  (It will be used in the future.)
	global	- 'format version record' is available.
		  (It will be used in the furture.)
	htags   - use temporary directory specified by TMPDIR environment
		  variable.
		- -l option added.

		  Thanks to Jeff Trawick. This option is his idea.

	nvi-1.79.diff
		- patch for nvi 1.79 to make extended vi.

version 2.0	Support of Emacs and CGI Form [7-Jul-97]

	[fixed bug]
	gtags, htags
		- treat files under 'RCS/' or 'SCCS/' directory.
	global	- allow relative path of GTAGSDBPATH and GTAGSROOT.
	htags	- illegal tag generated when no definition found.
	[changed]
	htags	- changed not to print line number by default.
		  If you need it, -n option should be specified.
		- added the command name to error message.
		- avoid sort(1)'s bug.
		- changed for performance.
	systags - use -n, -f option for htags by default.
		  doesn't use -w option for htags by default.
	gtags	- rewritten with perl.
	gtags, gctags
		- move some code for assembler source from gtags to gctags.
	gtags, htags, global
		- restrict PATH to '/bin:/usr/bin'.
	btreeop - expand tabs into spaces of output.
	[deleted]
	nvi-1.76.diff
	[added]
	gtags.el- emacs support (emulation of 1.34 nvi) added.
	htags	- hyperlink for include files added.
		- check if GTAGS is the latest one.
		- -f option added.
		  With this option, you can use input form and dynamic
		  index. (You need to setup httpd server for it.)
		- -n option added.
	global	- -f option added.
	btreeop - -L option added.

version 2.1	Symbol search, incremental update and gozilla [20-Sep-97]

	[changed]
	gtags	- -e option and -s option were deleted.
		  These options become default, so you need not to specify
		  them. Gtags accepts these options for compatibility but
		  no effect.
	global	- understand not only 'obj'(MAKEOBJDIR) directory but also
		  '/usr/obj'(MAKEOBJDIRPREFIX) directory of BSD build system.

		  Thanks to Jordan K. Hubbard. This is his idea.

	gctags, btreeop
		- remove <err.h> for portability. (Sorry, Philippe...)
	btreeop - output procedure rewritten.
			detab() + fprintf -> detab_print()
	gtags, htags, global
		- don't restrict PATH to '/bin:/usr/bin' like version 1.9
		  and the former.
	[fixed bug]
	gctags	- cannot treat files which include '\r'.

		  Thanks to Christoph Conrad for his bug report.

		- is disturbed by '_asm' statement.
		- write buffer beyoned the end when source file doesn't
		  end with '\n'. It brings segmentation fault.
	gtags.el- ESC-r command doesn't work.
	htags	- has a security hole in global.cgi.
	btreeop	- corrupt database when interrupted.
	all command
		- description of exit code in online manual is fixed.
	[added]
	gozilla
		- new command.
	gtags, gctags, global
		- can locate specified symbol other than function name
		  using GSYMS tag file.
	btreeop - support secondary key.
		  Optional key number added to -K option and -D option.
		- -k option added.(prefix read)
	global
		- -g option added.(grep pattern)

		  Thanks to Hideaki Okada for his advice.

		- -s option added.(symbol search)
		- -i option added.(incremental update)
		- -l option added.(search only under current directory)
		- -v option added.(verbose mode)
	gtags	- -i option added.(incremental update)
		- -v option added.(verbose mode)
		- -o option added.(stop making GSYMS tag file)
	gtags.el- gtags-find-symbol command (ESC-s) added.
		  It is equal to global's -s option.
		- gtags-find-pattern command (ESC-g) added.
		  It is equal to global's -g option.

version 2.11	only bugfix [7-Nov-97]

	[fixed bug]
	htags, gtags
		- cannot treat symbolic link.

		  Thanks to Yoshiharu Ito for his bug report.

	Makefile.generic
		- doens't work on Debian GNU/Linux.

		  Thanks to Y.Yoshinaga for his patch.

version 2.2	Rewritten with C for performance [7-Dec-97]

	[changed]
	gtags, global, gozilla
		- rewritten with C.
	global	- adopted POSIX regular expression (extension) instead of
		  perl's one.
	htags	- shape up anchor database.
	btreeop	- some options (-b, -c, -l, -p) were deleted.

version 2.21	bugfix and slightly modified [11-Dec-97]

	[fixed bug]
	gtags, global
		- doesn't skip RCS, SCCS, y.tab.c, y.tab.h.
	global	- generates illegal path name when using GTAGSLIBPATH
		  with -a option.
	[changed]
	lib/Makefile.generic
		- MANDIR = /usr/share/man -> MANDIR = /usr/man
		- replace `lorder $(OBJS) | tsort -q` to already sorted list.
		  for S.u.S.E Linux 5.1.

		Thanks to Christoph Conrad for his information.

	gtags, lib/test.c
		- some change for Solaris environment.

		Thanks to Yamashita TAKAO for his information.

	htags/Makefile, systags/Makefile
		- ${DESTDIR}/usr/bin  -> ${DESTDIR}${BINDIR}
OpenPOWER on IntegriCloud