update known-issues
[mono.git] / support / ChangeLog
1 2007-06-29  Jonathan Pryor  <jonpryor@vt.edu>
2
3         * dirent.c, grp.c, pwd.c, stdio.c, syslog.c, unistd.c: Following in the
4           logic of the 2007-06-27 logic...  Only return failure if an actual
5           DOCUMENTED error occurred.  For many of these functions, there are no
6           docuemented errors, so they "can't fail," even if errno were set.
7           All praise the POSIX standard?
8
9 2007-06-28  Jonathan Pryor  <jonpryor@vt.edu>
10
11         * map.c, map.h: Refresh -- to add Utimbuf copy conversion functions.
12           - Includes latest-and-greatest create-native-map output.
13           - Mono's Reflection output has changed as well --
14             FieldInfo.GetValue().ToString("x") is now "correct" for the underlying
15             type, so `short' enums are 0x0000, etc.
16           - Member sorting is now case-insensitive.
17
18 2007-06-27  Jonathan Pryor  <jonpryor@vt.edu>
19
20         * grp.c, pwd.c: Only return failure if a documented errno is encountered.
21           This fixes UnixUserInfo.GetLocalUsers() and UnixGroupInfo.GetLocalGroups()
22           on systems missing the file /etc/default/nss (which generates ENOENT,
23           which isn't documented, so therefore it's not a "real" error).
24         * mph.h: Add mph_return_if_val_in_list5().
25
26 2007-03-28  Wade Berrier  <miguel@novell.com>
27
28         * supportw.c (SendMessageA/GetWindowLongA): Return values to fix some 
29         warnings, even though these aren't called (Patch from suse rpms)
30
31 2007-01-23  Miguel de Icaza  <miguel@novell.com>
32
33         * serial.c (poll_serial): Fix for #79073, based on the patch by
34         Leszek Ciesielski, without introducing a GNU libc-ism.
35         (write_serial): Handle EINTR here as well.
36
37 2006-11-30  Jonathan Pryor  <jonpryor@vt.edu>
38
39         * map.c: _cnm_return_val_if_overflow() should be a no-op unless DEBUG is
40           defined.  "Fixes" false positives pending further investigation.
41
42 2006-11-18  Miguel de Icaza  <miguel@novell.com>
43
44         * serial.c (poll_serial): Do not report an error for EINTR. 
45
46 2006-11-18  Jelle Hissink  <Jelle.Hissink@C-it.nl>
47
48         * serial.c (poll_serial): Add timeout parameter to poll.
49
50         Fixes #79722 and #79735
51
52 2006-11-17  Jonathan Pryor  <jonpryor@vt.edu>
53
54         * map.c: Flush (fix FromFilePermissions for SuppressFlags-marked values).
55
56 2006-11-15  Jonathan Pryor  <jonpryor@vt.edu>
57
58         * map.c: Flush (removes warnings due to _cnm_return_val_if_overflow()).
59
60 2006-11-14  Jonathan Pryor  <jonpryor@vt.edu>
61
62         * map.c: Flush (fixes FilePermissions conversion, allowing Syscall.stat() to
63           work as expected).
64
65 2006-11-13  Jonathan Pryor  <jonpryor@vt.edu>
66
67         * mph.h: Add macro for XATTR_AUTO, so that XattrFlags mapping works (as
68           XATTR_AUTO is a value which frequently isn't definedy by any OS, yet it
69           has the value 0, a default value which is supported by most OS's).
70
71 2006-11-08  Jonathan Pryor  <jonpryor@vt.edu>
72
73         * Makefile.am: Revert addition of L_SET et al; this breaks the Win32 build.
74         * map.c: Revert addition of L_SET et al; this breaks the Win32 build.
75         * mph.h: Add macros for L_SET, L_INCR, and L_XTND for non-Win32 platforms.
76
77 2006-11-07  Jonathan Pryor  <jonpryor@vt.edu>
78
79         * Makefile.am: Add implementation macros for L_SET, L_INCR, and L_XTND.
80         * map.c: Make sure that L_SET, L_INCR, and L_XTND are defined.  Lets
81           Mono_Posix_FromSeekFlags() work on Solaris, fixing Gnome Bugzilla 370081.
82
83 2006-11-01  Jonathan Pryor  <jonpryor@vt.edu>
84
85         * stdio.c: Some BSDs define clearerr(3) as a macro, so we need to cast
86           `stream' to a `FILE*' to avoid derefing a `void*'.
87         * sys-statvfs.c: Build fix to support OS X 10.3.9 & systems w/o statvfs(2).
88
89 2006-11-01  Jonathan Pryor  <jonpryor@vt.edu>
90
91         * mph.h: Add fallback typedefs for blkcnt_t, blksize_t, suseconds_t so that
92           map.c can rely on their presence.  (Some versions of OS X don't provide
93           these typedefs.)
94
95 2006-10-27  Jonathan Pryor  <jonpryor@vt.edu>
96
97         * map.c: Improve handling of [Flags] enumerations which mix bitfields and
98           non-bitfield values (i.e. FilePermissions and S_IFREG, which isn't a bit
99           field, along with a few other FilePermissions values).  Fixes #79161.
100
101 2006-10-26  Jonathan Pryor  <jonpryor@vt.edu>
102
103         * map.c: Enclose structure conversion functions with HAVE_<<STRUCT NAME>>,
104           so that Unix-specific structures don't break the Win32 build.
105
106 2006-10-26  Jonathan Pryor  <jonpryor@vt.edu>
107
108         * create-native-map.exe: Remove.  Just grab a new copy whenever we need to
109           refresh map.[ch].
110         * Makefile.am: Remove `update-create-native-map' target, and just have the
111           `refresh' target grab the latest create-native-map.exe program.
112         * map.c: Flush (remove fallback to <inttypes.h> constants).
113
114 2006-10-26  Jonathan Pryor  <jonpryor@vt.edu>
115
116         * create-native-map.exe: Update; Adds support for integral limit fallback.
117         * map.c: Flush (adds integral limits fallback, so that if G_MININT8 doesn't
118           exist we can fallback sanely instead of breaking the build).
119
120 2006-10-26  Jonathan Pryor  <jonpryor@vt.edu>
121
122         * Makefile.am: Add "mph.h" to the generated code for map.c, so that
123           EOVERFLOW is defined on Win32.
124         * map.c: Flush (adds #include "mph.h").
125
126 2006-10-25  Wade berrier  <wberrier@novell.com>
127
128         * Makefile.am: remove map-icalls.h so make dist succeeds
129
130 2006-10-24  Jonathan Pryor  <jonpryor@vt.edu>
131
132         * dirent.c, errno.c, fcntl.c, fstab.c, grp.c, macros.c, pwd.c, signal.c, 
133           stdio.c, stdlib.c, string.c, sys-mman.c, sys-sendfile.c, sys-stat.c, 
134           sys-statvfs.c, sys-time.c, sys-xattr.c syslog.c, time.c, unistd.c, 
135           utime.c: Remove structure definitions, and use the
136           create-native-map generated definitions within map.h.  Update function
137           prototypes to match current map.h declarations.
138         * map.c, map.h: Flush (current create-native-map output).
139         * mph.h: Don't include "map-icalls.h"; "icalls" are now in map.h.
140         * create-native-map.exe: Added; cached version of create-native-map.exe
141           used to update map.c, map.h.  (create-native-map.exe source within
142           mono-tools/create-native-map.)
143         * Makefile.am: Added update-create-native-map target to update 
144           create-native-map.exe using pkg-config & the create-native-map.pc package. 
145                 Use create-native-map.exe to generate map.* files instead of make-map.exe.
146         * sys-statvfs.c: Add Mono_Posix_ToStatvfs, Mono_Posix_FromStatvfs exports.
147
148 2006-09-15  Jonathan Pryor  <jonpryor@vt.edu>
149
150         * Makefile.am: Remove CRYPT_LIBS use; we no longer rely on libcrypt.
151         * stdlib.c: Remove setkey(3) wrapper.
152         * unistd.c: Remove encrypt(3) wrapper.
153
154 2006-08-13  Miguel de Icaza  <miguel@novell.com>
155
156         * serial.c (get_bytes_in_buffer): Change the signature, we do not
157         return any meaningful error other than -1.
158
159 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
160
161         * mph.h (MPH_INTERNAL): Only use this if HAVE_VISIBILITY_HIDDEN is
162         defined since it is not supported on some archs with gcc.
163
164 2006-04-28  Wade Berrier <wberrier@novell.com>
165
166         * serial.c: Add sys/filio.h for solaris for FIONREAD
167
168 2006-04-20  Geoff Norton  <gnorton@customerdna.com>
169
170         * serial.c: Change TIOCINQ to FIONREAD to 
171         fix the build on the *BSDs.
172
173 2006-04-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
174
175         * serial.c: Added poll_serial () function, to poll
176         outside the read_serial () functions; and get_bytes_in_buffer (), to
177         get bytes in serialport buffers . Update some functions/enums
178         used by System.IO.Port.SerialPort too (Changes aproved by Miguel:
179         we will add tests in the managed side).
180         
181 2006-03-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
182
183         * serial.c: Add get_signal_code, get_signal, and set_signal
184         functions to access serial signals. Also add a MonoSerialSignal
185         enum, which is a copy of System.IO.Ports.SerialSignal.
186
187 Thu Mar 16 17:27:46 CET 2006 Paolo Molaro <lupus@ximian.com>
188
189         * serial.c: removed useless serial.h file (it was also
190         breaking the build).
191
192 2006-03-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
193
194         * serial.c: Fix a pair of wrong or incomplete assignations
195         in set_attributes.
196         
197 2006-02-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
198
199         * serial.h: New file with serial port constants.
200         * serial.c: Use the constants in serial.h instead of magic numbers.
201         
202 2006-01-03  Jonathan Pryor  <jonpryor@vt.edu>
203
204         * sys-time.c: lutimes(2) only exists on some BSDs.  There's a configure
205           check for it now -- use it.
206
207 2005-12-28  Jonathan Pryor  <jonpryor@vt.edu>
208
209         * map-icalls.h: Flush (add utimes_bad, lutimes, futimes).
210         * sys-time.c: Add lutimes(2) and futimes(2) wrapper.
211
212 2005-12-27  Jonathan Pryor  <jonpryor@vt.edu>
213
214         * map.c: Include <sys/mman.h>.  Fixes #77091.  Thanks to Ben Gamari.
215
216 2005-12-01  Jonathan Pryor  <jonpryor@vt.edu>
217
218         * Makefile.am: Use $(CRYPT_LIB), not -lcrypt, as not all platforms 
219           support -lcrypt.
220         * stdlib.c: Wrap Mono_Posix_Syscall_setkey() within HAVE_SETKEY, not
221           PLATFORM_WIN32
222
223 2005-12-01  Daniel Drake  <dsd@gentoo.org>
224
225         * Makefile.am: Link against libcrypt, needed for setkey(3) as referenced
226         in stdlib.c. Problem caught by Michael Hill.
227
228 2005-11-07  Jonathan Pryor  <jonpryor@vt.edu>
229
230         * map-icalls.h: Oddly, this file didn't get the new functions added in
231           2005-10-14 -- ToConfstrName, FromConfstrName, etc.  Add them.
232         * map.c, map.h: Remove invalid enumeration value SyslogFacility.LOG_USRE.
233
234 2005-10-14  Jonathan Pryor  <jonpryor@vt.edu>
235
236         * signal.c: Don't build Syscall wrappers on Win32.
237
238 2005-10-14  Jonathan Pryor  <jonpryor@vt.edu>
239
240         * Makefile.am (MPH_UNIX_SOURCE): Add syslog.c.
241         * dirent.c, grp.c, pwd.c, signal.c, stdio.c, stdlib.c: Wrap functions which
242           return `void' so that they instead: (1) return `int', (2) clear errno
243           before calling the real function, and (3) return -1 if errno changed.
244           This must be done in native code because calling 
245           Stdlib.SetLastError/Syscall.xxx
246           from managed code won't work reliably (since errno may change between the
247           SetLastError call and the actual Syscall invocation).
248         * unistd.c: Same as above, and allow fpathconf(3), pathconf(3), sysconf(3), 
249           and confstr(3) callers to explicitly choose their own errno value.
250         * map.c, map.h: Handle enumeration name change in Mono.Unix.Native
251           (e.g. ConfStr --> ConfstrName, etc.).  This is so that they follow the
252           established naming conventions.
253         * map-icalls.h: Add new icalls.
254         * syslog.c: Added; wraps <syslog.h> functions.
255
256 2005-10-06  Jonathan Pryor  <jonpryor@vt.edu>
257
258         * Makefile.am (MPH_C_SOURCE): Add string.c.
259         * string.c: Added; exports strlen(3) wrapper.
260         * map-icalls.h: Prototype for strlen(3) wrapper.
261
262 2005-09-29  Miguel de Icaza  <miguel@novell.com>
263
264         * support-heap.c: Add meat to the Heap routines. 
265
266 2005-09-20  Jonathan Pryor  <jonpryor@vt.edu>
267
268         * Makefile.am (refresh): Use the make-map.exe in Mono.Unix.Native.
269         * map-icalls.h, map.c, map.h: Update to catch new enums AccessModes, Errno,  
270           and MmapProts.  Huge re-ordering because of namespace change in managed
271           code (not relevant to C API), and make-map.exe now outputs types/members
272           in alphabetical order (to avoid major code churn in the future).
273
274 2005-07-12  Daniel Drake  <dsd@gentoo.org>
275
276         * sys-xattr.c: Use <attr/attr.h> if <sys/xattr.h> does not exist (e.g. for
277         glibc 2.2)
278         * Makefile.am: Link to libattr if libc does not provide the xattr
279         syscalls.
280
281 Thu Jul 7 12:35:20 EDT 2005 Paolo Molaro <lupus@ximian.com>
282
283         *supportw.c, Makefile.am: remove calls and link to libmono/libwapi.
284
285 2005-07-01  Daniel Drake  <dsd@gentoo.org>
286
287         * sys-xattr.c: Support FreeBSD's extattr implementation. Slight API rework
288           to provide transparency between Linux and FreeBSD EA's.
289         * map-icalls.h: Update as above
290
291 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
292
293         * supportw.c: HeapDestroy.
294         * Makefile.am: don't build supportw on windows.
295
296 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
297
298         * Makefile.am: namespace our library.
299
300 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
301
302         * supportw.c:
303         * supportw.h:
304         * Makefile.am: new library intended to provide often P/Invoked windows
305         API functions not present in io-layer.
306
307 2005-06-29  Jonathan Pryor  <jonpryor@vt.edu>
308
309         * map.c: Handle Syslog-related changes (SyslogFacility isn't a 
310           [Flags] enum); make-map.exe changes.
311
312 2005-06-28  Jonathan Pryor  <jonpryor@vt.edu>
313
314         * map.c, map.h: Handle Syslog-related changes (SyslogLevel isn't a [Flags]
315           enum; change in order between LOG_USER and LOG_USRE).
316
317 2005-06-27  Jonathan Pryor  <jonpryor@vt.edu>
318
319         * map.c, map.h: Add corrected spelling of LOG_USER.
320
321 2005-06-13  Miguel de Icaza  <miguel@novell.com>
322
323         *  sys-statvfs.c (copy_statfs): f_flags is the field name on BSD,
324         not f_flag. 
325
326 2005-06-08  Jonathan Pryor  <jonpryor@vt.edu>
327
328         * Makefile.am: Create an unversioned library.  We won't make any gaurantees
329           about ABI stability until Mono 1.2 (if then).
330
331 2005-06-07  Jonathan Pryor  <jonpryor@vt.edu>
332
333         * sys-mman.c: Check for presence of mremap and remap_file_pages.
334
335 2005-06-05  Jonathan Pryor  <jonpryor@vt.edu>
336
337         * map-icalls.h, map.h: Change header comment so it matches what 
338           `make refresh` generates.
339         * map.c: Add <sys/xattr.h> header.
340
341 2005-05-31  Jonathan Pryor  <jonpryor@vt.edu>
342
343         * sys-mman.c: Add wrappers for mmap, munmap, mprotect, msync, mlock,
344           munlock, mremap, mincore, remap_file_pages.
345         * map-icalls.h: Update to latest shared interface.
346         * map.c, map.h: Add {To,From} pairs for MmapFlags, MmapProt, MsyncFlags,
347           MlockallFlags, MremapFlags.
348         * mph.h: Add mph_return_*_if_ssize_t_overflow macros.
349
350 2005-05-31  Jonathan Pryor  <jonpryor@vt.edu>
351
352         * unistd.c: Oops -- deal with s/LockFlags/LockfCommand/ change.
353
354 2005-05-31  Jonathan Pryor  <jonpryor@vt.edu>
355
356         * map.h, map.c, map-icalls.h: Rename LockFlags to LockfCommand.
357
358 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
359
360         * Makefile.am (MPH_C_SOURCE): Add map-icalls.h. Fixes #75012.
361
362 2005-05-18  Jonathan Pryor  <jonpryor@vt.edu>
363
364         * map-icalls.h: Added; auto-generated file which contains Mono_Posix_*
365           declarations for DllImport functions in Mono.Posix.dll.  This ensure
366           consistency between Mono.Posix.dll and MonoPosixHelper.so.
367         * mph.h: Add include for map-icalls.h, to ensure that all MonoPosixHelper
368           exports have correct prototypes.
369         * dirent.c, grp.c, macros.c, pwd.c, signal.c, stdio.c, sys-stat.c, 
370           sys-time.c, utime.c: Correct prototypes to match map-icalls.h.  Alas, this
371           "loses" information -- FILE* becomes void*, etc. -- but no semantics or
372           ABI should be changed (except for Mono_Posix_Syscall_utime).  Some
373           structure names also changed to match the generated names; since the
374           structures are private, this shouldn't break anything.
375         * errno.c: Remove Mono_Posix_Syscall_SetLastError so we don't get a warning
376           about a missing prototype.  This was never in a stable release.
377         * old-map.c: Include mph.h for prototype checking.
378         * unistd.c: SeekFlags conversion is now done in managed code so that a short
379           isn't passed as a parameter; Correct prototypes to match map-icalls.h.
380         * sys-xattr.c: fix lsetxattr/fsetxattr confusion; Correct prototypes to 
381           match map-icalls.h.
382         * sys-sendfile.c: Move mph.h include so that HAVE_SYS_SENDFILE_H is used.
383         * sys-wait.c: Include mph.h so that prototypes are checked.
384
385 2005-05-16  Jonathan Pryor  <jonpryor@vt.edu>
386
387         * sys-statvfs.c: Include "map.h" for Mono_Posix_ToMountFlags prototype.
388         * map.c: Include <sys/statvfs.h> so Mono_Posix_{To,From}MountFlags actually
389           does something useful.
390
391 2005-05-12  Jonathan Pryor  <jonpryor@vt.edu>
392
393         * map.c, map.h: Add FromMountFlags, ToMountFlags.  (MountFlags is used in
394           `struct statvfs', which is POSIX).
395         * sys-statvfs.c: Use ToMountFlags to convert the OS flags value into the
396           managed equivalent.
397
398 2005-05-03  Geoff Norton  <gnorton@customerdna.com>
399
400         * sys-xattr.c:  Mac OS/X Tiger supports xattr but has a different API for supporting
401         resource forks.  Allow mono to build on Tiger.
402
403 2005-04-30  Jonathan Pryor  <jonpryor@vt.edu>
404
405         * stdio.c: Add Mono_Posix_Stdlib_DumpFilePosition, which create a hex string
406           "dump" of a fpos_t.  This is used for Mono.Unix.FilePosition.ToString().
407
408 2005-04-19  Jonathan Pryor  <jonpryor@vt.edu>
409
410         * map.c, map.h: Added XattrFlags values, functions.
411         * sys-xattr.c: Added; <sys/xattr.h> wrapper functions.  Thanks to Daniel
412           Drake for writing these.
413         * Makefile.am: Add sys-xattr.c to the build.
414
415 2005-04-07  Jonathan Pryor  <jonpryor@vt.edu>
416
417         * errno.c: Use the GNU version of strerror_r if _GNU_SOURCE is defined
418           (otherwise assume existence of XPG variant).  This allows proper
419           compilation under Red Hat 9.
420         * fstab.c: protect against users calling setfsent(), setfsent(), ...  
421           endfsent(), which would otherwise leak a FILE handle.
422
423 2005-04-05  Zoltan Varga  <vargaz@freemail.hu>
424
425         * mph.h: Apply patch from the freebsd ports collection.
426
427 2005-02-10  Zoltan Varga  <vargaz@freemail.hu>
428
429         * zlib_macros.c (create_z_stream): Explicitly check for older versions
430         of zlib.
431
432 2005-02-08  Zoltan Varga  <vargaz@freemail.hu>
433
434         * pwd.c (Mono_Posix_Syscall_getpwnam_r): Add another part missing from the last patch.
435
436 2005-02-07  Jonathan Pryor  <jonpryor@vt.edu>
437
438         * grp.c: Oops.  Didn't see other Solaris fix in #72292.
439
440 2005-02-07  Jonathan Pryor  <jonpryor@vt.edu>
441
442         * grp.c, pwd.c: Clear errno before calling the actual calls, as errno may
443           have a stale value, leading to spurious errors later.  Fixes #72292.
444
445 2005-02-03  Jonathan Pryor  <jonpryor@vt.edu>
446
447         * Makefile.am (MPH_C_SOURCE): Move errno.c into MPH_C_SOURCE, so it's built
448           on Windows as well as Unix.
449
450 2005-02-03  Jonathan Pryor  <jonpryor@vt.edu>
451
452         * errno.c: Mono_Posix_Syscall_SetLastError should be in Stdlib, not Syscall, 
453           since it's part of ANSI C (and errno will be used from StdioFileStream).  
454           Add Mono_Posix_Stdlib_SetLastError.  Don't remove the Syscall version, as 
455           we don't want to break Mono 1.1.4/svn users the day after release. :-)
456
457 2005-01-25  Jonathan Pryor  <jonpryor@vt.edu>
458
459         * macros.c: Use gint64, not long, to match C# declaration.  Fixes 71152.
460
461 2005-01-23  Geoff Norton  <gnorton@customerdna.com>
462
463         * dirent.c: Include <unistd.h> to bring off_t in on gcc4.0+OSX
464
465 2005-01-13  Jonathan Pryor  <jonpryor@vt.edu>
466
467         * map.h: Correct Mono_Posix_OpenFlags values (they should now match 
468           x86 linux); remove unused enumerations (MountFlags, etc.).
469
470 2005-01-13  Jonathan Pryor  <jonpryor@vt.edu>
471
472         * fstab.c: Fix HPUX support.  HPUX includes both <fstab.h> and
473           <checkpoint.h>, so we need to give preference to <checkpoint.h>.
474
475 2005-01-05  Jonathan Pryor  <jonpryor@vt.edu>
476
477         * fstab.c: Add support for HPUX, which uses <checklist.h>.
478
479 2005-01-05  Jonathan Pryor  <jonpryor@vt.edu>
480
481         * map.c: Continuing my ineptitude...  <sys/wait.h> isn't on Win32.
482         * mph.h: Win32 doesn't define EOVERFLOW, either.  Define it.
483
484 2005-01-05  Jonathan Pryor  <jonpryor@vt.edu>
485
486         * map.c: Include <config.h> so we can check for PLATFORM_WIN32.
487
488 2005-01-05  Jonathan Pryor  <jonpryor@vt.edu>
489
490         * map.c: Fix Win32 build break.  Win32 doesn't have all the sys/* headers.
491
492 2005-01-05  Jonathan Pryor  <jonpryor@vt.edu>
493
494         * serial.c: HPUX compiler fix.
495         * stdlib.c: Add C-defined macro wrappers.
496
497 2005-01-04  Jonathan Pryor  <jonpryor@vt.edu>
498
499         * stdio.c: Add wrapper for C99's snprintf(3).
500
501 2005-01-04  Jonathan Pryor  <jonpryor@vt.edu>
502
503         * Makefile.am: Rewrite.  Remove configure-generated warnings about 
504           multiple _LIBADD and _SOURCES lines.  Add support for Win32.  
505           Win32 support is limited to ANSI C functions.
506         * stdio.c: Don't compile Unix wrappers on Win32.
507
508 2005-01-04  Raja R Harinath  <rharinath@novell.com>
509
510         * Makefile.am (LIBS): Remove.  Was overriding results of configure check.
511         (libMonoPosixHelper_la_LIBADD): List $(GLIB_LIBS) here.
512
513 2005-01-04  Jonathan Pryor  <jonpryor@vt.edu>
514
515         * Makefile.am: Add libnsl to LIBS.  Hopefully this will let sparc link.
516         * mph.h: Make MPH_INTERNAL conditional on __GNUC__.
517
518 2005-01-03  Jonathan Pryor  <jonpryor@vt.edu>
519
520         * signal.c, stdio.c: Remove "function declaration isn't a prototype" warnings.
521         * unistd.c: Check for presence of gethostname and sethostname.
522
523 2005-01-03  Jonathan Pryor  <jonpryor@vt.edu>
524
525         * mph.h, x-struct-str.c: Add "const" to parameters to remove 
526           "warning: passing arg [2|4]...discards qualifiers" message.
527
528 2005-01-03  Jonathan Pryor  <jonpryor@vt.edu>
529
530         * fstab.c: Remove some sparc compiler warnings.
531
532 2005-01-03  Jonathan Pryor  <jonpryor@vt.edu>
533
534         * fstab.c: Solaris doesn't support getfsent(3), but it provides equivalent
535           functionality in getvfsent(3C).  Implement Solaris support.
536
537 2005-01-02  Jonathan Pryor  <jonpryor@vt.edu>
538
539         * stdio.c: More wrapper functions.  I missed a few macros...  This should
540           complete all macro's defined in <stdio.h> for C99.
541
542 2004-12-30  Jonathan Pryor  <jonpryor@vt.edu>
543
544         * stdio.c: More wrapper functions.  This should complete C89's <stdio.h>
545           requirements.
546
547 2004-12-30  Jonathan Pryor  <jonpryor@vt.edu>
548
549         * sys-statvfs.c: Further proving that changing code without compiling is
550           dangerous business...  Compiler fix for OS X.
551
552 2004-12-30  Jonathan Pryor  <jonpryor@vt.edu>
553
554         * signal.c: Mac OS X portability fixes -- it doesn't provide sighandler_t!
555
556 2004-12-30  Jonathan Pryor  <jonpryor@vt.edu>
557
558         * Makefile.am: Add signal.c to the build.
559         * signal.c: Added.  Contains helper functions to wrap signal(2).
560
561 2004-12-30  Jonathan Pryor  <jonpryor@vt.edu>
562
563         * sys-statvfs.c: Fix Mac OS X build (statfs.f_frsize doesn't exist on OSX;
564           f_fsid isn't an integral type; fstatfs needs to use fpathconf).
565
566 2004-12-29  Jonathan Pryor  <jonpryor@vt.edu>
567
568         * unistd.c: Null-terminate the string returned by readlink(2).  This works
569           around a marshaler "issue".
570
571 2004-12-28  Jonathan Pryor  <jonpryor@vt.edu>
572
573         * Makefile.am: Add GLIB_LIBS to the LIBS line, since we require linking
574           against glib-2.0 (to use g_assert()).
575
576 2004-12-28  Jonathan Pryor  <jonpryor@vt.edu>
577
578         * fstab.c: Added; wrap <fstab.h> functions: getfsent(3), getfsfile(3), 
579           getfsspec(3).
580         * map.c: Add new conversion functions for SyslogOptions, SyslogFacility, 
581           SyslogLevel; see syslog(3) for details.
582         * map.h: Add new conversion functions and values for SyslogOptions, 
583           SyslogFacility, SyslogLevel; see syslog(3) for details.
584         * Makefile.am (MPH_SOURCE): add fstab.c, sys-statvfs.c, x-struct-str.c.
585         * mph.h: Document location for Mac OS X man page documentation; add
586           MPH_INTERNAL macro for intra-library function calls (for functions that
587           shouldn't be exported from libMonoPosixHelper.so); declare
588           _mph_copy_structure_strings().
589         * pwd.c: Use _mph_copy_structure_strings() to copy strings embedded within
590           struct passwd.
591         * sys-statvfs.c: Added; wrap <sys/statvfs.h> functions statvfs(2),
592           fstatvfs(2), and (to complicate things) implement (f)statvfs(2) in terms
593           of (f)statfs(2) on Mac OS X (which lacks the -vfs calls).
594         * x-struct-str.c: implements _mph_copy_structure_strings(), which is a
595           generalized interface to copy strings between structures (as is needed in
596           pwd.c and fstab.c).
597
598 Thu Dec 23 14:58:09 EST 2004 Paolo Molaro <lupus@ximian.com>
599
600         * serial.c: remove mono calls from here: they break the build
601         and they don't belong here.
602
603 2004-12-21  Chris Toshok  <toshok@ximian.com>
604
605         * serial.c: initial import of System.IO.Ports pinvoke stuff.
606
607         * Makefile.am (MPH_SOURCE): add serial.c.
608
609 2004-11-30  Jonathan Pryor  <jonpryor@vt.edu>
610
611         * mph.h: Use <glib.h>, not <glib/gtypes.h>, as the HP/UX compiler needs
612           <glib/gutils.h> to handle the `inline' keyword.
613
614 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
615
616         * Makefile.am (MPH_SOURCE): Add macros.c for compatibility with
617         the old API (currently the old API would fail).
618
619 2004-11-25  Raja R Harinath  <rharinath@novell.com>
620
621         * Makefile.am (MPH_SOURCE): Distribute old-map.h and map.h.
622
623 2004-11-18  Jonathan Pryor  <jonpryor@vt.edu>
624
625         * stdio.c: Add fread(3) and fwrite(3) wrappers.
626
627 2004-11-16  Jonathan Pryor  <jonpryor@vt.edu>
628
629         * Makefile.am: Remove sys-mount.c from the build.
630         * sys-mount.c: Delete.  We're not exporting mount-related functionality
631           anymore.  It's not remotely portable, and trying to make it portable is a
632           doomed idea.
633         * map.c: Remove mount- and umount-related conversion functions.
634
635 2004-11-14  Geoff Norton  <gnorton@customerdna.com>
636         
637         * mph.h:  Revernt jonp's removal of MPH_ON_BSD define as sys-mount.c
638         and unistd.c still check this configuration value.  This allows mono
639         to build on *BSD again.
640
641 2004-11-12  Jonathan Pryor <jonpryor@vt.edu>
642
643         * dirent.c: Only access members which exist on the target
644           platform.
645         * errno.c: Only export strerror_r if it's available.
646         * mph.h: Remove MPH_ON_BSD; use the configure checks instead.
647         * sys-mman.c: Only export posix_madvise if it's available.
648         * unistd.c: Only export sethostid if it's available.
649
650 2004-11-08  Jonathan Pryor <jonpryor@vt.edu>
651
652         * Makefile.am: Add sys-sendfile.c to the build.
653         * dirent.c, fcntl.c, unistd.c: Remove
654           compile-time checks for -64 apis (pread64, etc.), as they're
655           superfluous.  GLibc #defines the functions to the appropriate
656           -64 counterpart when necessary, and Darwin is intrinsically
657           large-file-aware, so manual checking on my part is redundant and
658           unnecessary.
659         * grp.c: Add checks for non-portable functions getgrnam_r,
660           getgrgid_r.
661         * pwd.c: Add checks for non-portable functions getpwnam_r,
662           getpwuid_r.
663         * map.c: Remove <poll.h> include.  Building on Tiger (Mac
664           OS X 10.4 beta) breaks when both <poll.h> and <sys/poll.h> are
665           included, so only use <sys/poll.h>.
666         * mph.h: Clean up macro handling for type overflow checking.
667
668 2004-11-05  Jonathan Pryor <jonpryor@vt.edu>
669
670         * .cvsignore: Ignore generated files.
671         * Makefile.am: Add new INCLUDE directives (for glib
672           headers), source; bump library version (so we don't clobber
673           previous versions of libMonoPosixHelper.so).
674         * dirent.c: New file; <dirent.h> wrapper functions; 
675           BSD portability fixes.
676         * errno.c: New file; <errno.h> wrapper functions
677         * fcntl.c: New file; <fcntl.h> wrapper functions;
678           BSD portability fixes.
679         * grp.c: New file; <grp.h> wrapper functions;
680           BSD portability fixes.
681         * map.c: Updated macro mapping functions (more enums
682           mapped, more error checking, etc.).
683         * map.h: Updated macro mapping functions
684         * old-map.c: Previous map.c implementation, for backward
685           compatibility Remove spurious warning about redefining
686           _GNU_SOURCE.
687         * old-map.h: Previous map.h implementation, for backward
688         compatibility
689         * mph.h: New file; Utility types, macros;
690           BSD portability fixes.
691         * pwd.c: New file; <pwd.h> wrapper functions;
692           BSD portability fixes.
693         * stdio.c: New file; <stdio.h> wrapper functions
694         * stdlib.c: New file; <stdlib.h> wrapper functions
695         * sys-mman.c: New file; <sys/mman.h> wrapper functions
696         * sys-mount.c: New file; <sys/mount.h> wrapper functions;
697           BSD portability fixes.
698         * sys-sendfile.c: New file; <sys/sendfile.h> wrapper
699           functions; BSD portability fixes.
700         * sys-stat.c: New file; <sys/stat.h> wrapper functions
701         * sys-wait.c: New file; <sys/wait.h> wrapper functions
702         * time.c: New file; <time.h> wrapper functions;
703           BSD portability fixes.
704         * unistd.c: New file; <unistd.h> wrapper functions;
705           BSD portability fixes.
706