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