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