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