ChangeLog 26 KB

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