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
|
2012-05-30 Arnold D. Robbins <arnold@skeeve.com>
* testext.c: New file. Outline of tests for extension API.
2012-05-29 Arnold D. Robbins <arnold@skeeve.com>
* filefuncs.c: Further cleanup and condensation of code into tables.
* fork.c, ordchr.c, readfile.c: Update copyright, general cleanup.
2012-05-25 Arnold D. Robbins <arnold@skeeve.com>
* filefuncs.c (array_set_numeric): Don't return a value from
a void function.
2012-05-24 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (AM_CPPFLAGS): Use $(srcdir) to work properly when
built outside the source directory.
* configure.ac (INSTALL): Set location manually since autoconf was
not specifying the proper path for install-sh.
* filefuncs2.c, ordchr2.c, readfile2.c: Deleted.
* filefuncs.c: Install filefuncs2.c and patch for recent API changes.
* ordchr.c: Install ordchr2.c and patch for recent API changes.
* readfile.c: Install readfile2.c and patch for recent API changes.
* fork.c: Port to new API.
2012-05-21 Andrew J. Schorr <aschorr@telemetry-investments.com>
* configure.ac: New file to run configure with libtool support
in this subdirectory.
* Makefile.am: Some changes related to running automake in this
directory.
* AUTHORS, COPYING, INSTALL, NEWS, README: Added files to make automake
happy.
* aclocal.m4, configure, configh.in: Added autoconf files.
* build-aux, m4: New subdirectories for autoconf stuff.
2012-05-15 Arnold D. Robbins <arnold@skeeve.com>
* filefuncs2.c: New file implementing chdir and stat using the
new interface.
Everything else is temporarily broken.
2012-05-13 Andrew J. Schorr <aschorr@telemetry-investments.com>
* filefuncs.c (array_set): Add a comment discussing the use of unref
on the value returned by assoc_lookup.
2012-05-13 Andrew J. Schorr <aschorr@telemetry-investments.com>
* xreadlink.[ch]: Remove unused files.
2012-05-11 Arnold D. Robbins <arnold@skeeve.com>
Sweeping change: Use `bool', `true', and `false' everywhere.
2012-04-11 Andrew J. Schorr <aschorr@telemetry-investments.com>
* filefuncs.c (array_set): New function to set an array element.
(do_set): Use new array_set function to reduce code duplication and
to make sure the memory management is handled properly.
2012-04-07 Andrew J. Schorr <aschorr@telemetry-investments.com>
* filefuncs.c: Remove unnecessary #include <sys/sysmacros.h>.
(read_symlink): New function to read symbolic links more robustly.
(do_stat): Use read_symlink instead of readlink.
* fork.c (do_wait): new function.
(dlload): Call make_builtin to add "wait" function.
2012-04-02 Andrew J. Schorr <aschorr@telemetry-investments.com>
* fork.c (do_fork): Test whether PROCINFO_node exists before updating
the pid values. And do so properly using make_number.
* readfile.c (do_readfile): Function should be static.
2012-04-01 Andrew J. Schorr <aschorr@telemetry-investments.com>
* filefuncs.c (do_chdir, do_stat): Replace update_ERRNO() with
update_ERRNO_int(errno).
* fork.c (do_fork, do_waitpid): Ditto.
* readfile.c (do_readfile): Ditto.
* rwarray.c (do_writea, do_reada): Ditto.
2012-03-25 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am: Major cleanup. Use libtool options -module and
-avoid-version to create the modules properly without my local hack
to override the default behavior.
2012-03-25 Andrew J. Schorr <aschorr@telemetry-investments.com>
* .gitignore: New file to ignore files created by libtool (including
binaries and associated metadata).
2012-03-21 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (INCLUDES): Remove -I$(top_srcdir)/intl.
2012-03-20 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am: New file to build and install shared libraries.
* arrayparm.c (do_mkarray): Get it to compile by removing 2nd arg
to assoc_clear.
* filefuncs.c (do_stat): Ditto.
2011-08-31 John Haque <j.eh@mchsi.com>
* arrayparm.c, filefuncs.c, fork.c, ordchr.c, readfile.c,
rwarray.c, testarg.c: Updated.
2012-03-28 Arnold D. Robbins <arnold@skeeve.com>
* 4.0.1: Release tar ball made.
2011-06-23 Arnold D. Robbins <arnold@skeeve.com>
* ChangeLog.0: Rotated ChangeLog into this file.
* ChangeLog: Created anew for gawk 4.0.0 and on.
* 4.0.0: Release tar ball made.
|