-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
222 lines (160 loc) · 7.73 KB
/
ChangeLog
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
fam-2.7.0
Bumped version numbers to 2.7.0
fam-2.7.0-pre2
Changed NOGROUP usage in src/Cred.c++ to -1 as NOGROUP is not defined
in IRIX.
fam-2.7.0-pre1
removed const modifier from Scheduler.h to fix GCC 3.x build.
created new GNU autotools files:
- test whether we have IMon rather than testing OS.
- test whether we have sockaddr length members rather than testing OS.
- install daemon in sbin rather than bin.
- install manual pages in typical GNU/Linux sections.
- rename daemon to famd.
- rename fam source directory to src.
- rename libfam source directory to lib.
- remove editconf and util subdirectory.
- remove rpm target and build subdirectory.
- remove support target and subdirectory.
fixed warnings about typenames in BTree.h.
fam-2.6.10
removed const from Scheduler.h to fix GCC 3 build.
use GID_NOBODY if NOGROUP is undefined to build on SysV-like
operating systems including IRIX.
fam-2.6.9
added idle_timeout and nfs_polling_interval options to fam.conf.
use daemon() as an alternative to _daemonize() to background the
fam process if it is available.
allow for different socket structure on FreeBSD and other small
changes to assist FreeBSD build.
fam-2.6.8
#include some standard header files to help build on FreeBSD.
improved group handling from IRIX.
untrusted user's GID is set to NOGROUP if getgrmember() gave FAM
an invalid or inconsistent GID.
should now handle strerror returning null.
initalize libtool earlier in the configure process to avoid binaries
being created with a .C extension on some systems.
added libstdc++ to linker flags to make libfam always build as a
C++ library.
added CLEANFILES make target.
/etc/mtab (or equivalent) is now opened read-only.
fam-2.6.7
main in test.c++ now returns int to be standards compliant.
added #include <stdlib.h> where it was missing.
updated man page to correctly show NFS polling interval.
check more file attributes to avoid race.
log pipe errors more selectively.
fam-2.6.6
Always put temporary files in /tmp (ignore $TMPDIR) so users can connect
to fam using sockets even if the user can't read $TMPDIR.
Correctly set effective uid so that more than one user can use fam
simultaneously on systems that use BSD-style restricted chown.
Only remove FAM configuration in RPM if FAM is being uninstalled,
not if it's being upgraded.
We now report changes when mtime or ctime change, not just ctime.
Also, on IRIX, where the stat struct has nanoseconds, FAM checks it.
Dropped "oss" from version number.
fam-oss-2.6.5
Fix for bug 796109, where if we didn't have imon support and we were
monitoring a file which didn't exist, we would stop monitoring when it
was created. (wessmith)
Added tests to rpm.spec.in to handle upgrades, where rpm runs our install
scripts in the wrong order. (rusty)
RPM package now Requires: /usr/sbin/inetd (wessmith)
fam spec file now being generated by configure script. (rusty)
fam-oss-2.6.4
Stupid, gratuitous breakage of the FAM API introduced by Rusty in 2.6.0,
and only partially fixed in 2.6.1, is fixed "again." The difference is
that FAMPending now returns 1 instead of -1 on error/EOF.
Both "make install" and the RPM packages generated by "make rpm" now
add fam to /etc/rpc and /etc/inetd.conf, and /usr/local/lib (or
wherever libfam.so is installed) to /etc/ld.so.conf if it's not already
there.
libfam includes a list of exported symbols (only the symbols in fam.h),
even though there seem to be some issues with libtool handling them
correctly. Thanks to Waldo Bastian for pointing me at the right libtool
option.
The last version contained another gross failure to build without imon
support on Linux, introduced by Rusty, fixed in this version by Wesley
Smith.
The fam(3X) man page is more clear about how to use FAMPending and
FAMNextEvent.
fam-oss-2.6.3
This contains a bunch of fixes contributed by Porter Schermerhorn
(Elmoe), David Kelly, Sumit Bose, Rasterman, Peter Zijlstra, Mandrake,
Ingvaldur Sigurjónsson, (and I've forgotten others?), for building with
gcc-2.95.2. Note that I don't actually have a working gcc-2.95.2, and
it's quite possible that I goofed up merging some of the patches, but
it builds on my boxes without setting CFLAGS...
This also has portions of Sumit Bose's patches for building on IRIX 5.3,
but unfortunately not enough to actually build on IRIX 5.3.
This also has support for building RPM packages.
("./configure && make rpm")
fam-oss-2.6.2
"Fixed" error message in SYSLOG when clients terminate. (The behavior is
the same; now it just doesn't log an error message.) Thanks to Andras
Balogh.
Configure script changes:
- It's better about caching the results of its tests.
- If it thinks you don't have imon support, it prints out a big warning
message with some advice.
- The dumb tests for uname = IRIX are still dumb, but less broken; now
they catch uname IRIX64, too.
- Added a "support" subdir and a sample test for reimplementations of
stuff that's missing on different platforms (like snprintf on 6.3),
but at the moment it's empty because I didn't finish incorporating
the patch which Wesley Smith sent Rolf Schreiber for compiling on
IRIX 6.3.
fam-oss-2.6.1
Stupid, gratuitous breakage of the FAM API introduced by Rusty in 2.6.0 has
been fixed. (FAMPending and FAMNextEvent no longer worked as advertised
when they got an EOF.) Thanks to Wesley Smith.
The "echo -e" configure script fix is included. Thanks to Henning
Meier-Geinitz, Charles E. Campbell, Robert F. Phillips II, and others.
"-n32 -mips3" is no longer hard-coded in the configure script for compiling
on IRIX. Now there's a better chance of the ABI being chosen correctly,
and if you want to control it, you can set the ABI in your CXXFLAGS
environment variable instead of having to edit the nasty configure script.
Added ii_files/*.ii to CLEANFILES in some of the Makefile.am's so that SGI
compiler prelinker files get cleaned up by "make clean". (Matters if you
want to switch between ABIs.)
The version number changed from 2.6.0 to oss-2.6.1. The "oss" is just to
emphasize that the version numbers between fam-bundled-with-IRIX and
fam-open-source are not comparable. (The fam which will be in IRIX 6.5.8
calls itself "fam 2.6.0", but it has some of the same fixes as the
open-source 2.6.1.) I will be sorry later that I wasn't smarter about the
version numbers at the start.
This version does not contain a fix for the SYSLOG message when a client
shuts down, and does not yet include the patch which Wesley Smith sent
Rolf Schreiber for compiling on IRIX 6.3.
fam-2.6.0
This is the first OSS version.