ChangeLog 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. 2002-08-17 Gonzalo Paniagua Javier <[email protected]>
  2. * configure.in: don't link against libdl on windoze.
  3. 2002-08-12 Dick Porter <[email protected]>
  4. * mono.pc.in: Add $includedir to Cflags
  5. Fri Jul 19 18:38:38 CEST 2002 Paolo Molaro <[email protected]>
  6. * configure.in, Makefile.am, mono.pc.in: add a mono.pc file for use
  7. with pkg-config.
  8. * */Makefile.am: makefile overhaul to create a shared libmono library.
  9. * */*.h: do not include config.h in headers that should be installed.
  10. 2002-07-12 Dick Porter <[email protected]>
  11. * acconfig.h:
  12. * configure.in: Check the size of sockaddr_un.sun_path
  13. 2002-06-23 Miguel de Icaza <[email protected]>
  14. * man/Makefile.am (man_MANS): Added new man page
  15. * man/mono-config.5: New manual page describing the mono-config
  16. file format.
  17. 2002-06-10 Jaroslaw Kowalski <[email protected]>
  18. * configure.in: added checks for MSG_NOSIGNAL
  19. 2002-05-30 Daniel Morgan <[email protected]>
  20. * doc/ado-net: update the ado-net web page on go-mono.com
  21. input parameters support, beginnings of Mono.Data.MySQL
  22. and System.Data.OleDb, updated the sample source code,
  23. and output from a PostgresTest
  24. 2002-05-21 Martin Baulig <[email protected]>
  25. * mono.1: Documented the "--debug-args" debugging arguments.
  26. 2002-05-21 Martin Baulig <[email protected]>
  27. * mono.1: Updated to reflect my latest changes and beautified this a bit.
  28. (FIXME: There are still command line argument which aren't documented here.)
  29. 2002-05-19 Daniel Morgan <[email protected]>
  30. * doc/ado-net: updated page to include C# code snippets using
  31. System.Data. Update status: handle reading NULL values, DataSet/DataAdapter
  32. works, executing/reading multiple results, and stored procedures.
  33. And other tweaks about the providers.
  34. 2002-05-19 Martin Baulig <[email protected]>
  35. * mono/Makefile.am (SUBDIRS): Added `os', it's referenced by
  36. interpreter/Makefile.am.
  37. Wed May 15 12:22:09 CEST 2002 Paolo Molaro <[email protected]>
  38. * configure.in: search for pthread functions also in libc_r (patch
  39. from Garrett Rooney <[email protected]>).
  40. 2002-05-11 Daniel Morgan <[email protected]>
  41. * doc/ado-net: added instructions for installing PostgreSQL on Linux
  42. and for using nant to re-compile just the System.Data.dll assembly
  43. on Windows.
  44. 2002-05-10 Rodrigo Moya <[email protected]>
  45. * doc/ado-net: added instructions for compiling System.Data.dll
  46. (a subset of) on Linux.
  47. 2002-05-10 Daniel Morgan <[email protected]>
  48. * doc/ado-net: added links
  49. 2002-05-09 Dick Porter <[email protected]>
  50. * configure.in: Set CPPFLAGS not CFLAGS (bug 23767)
  51. 2002-05-05 Daniel Morgan <[email protected]>
  52. * doc/ado-net: correct formatting
  53. * doc/index: added credit i forgot to add
  54. 2002-05-05 Daniel Morgan <[email protected]>
  55. * doc/ado-net: i did not format it correctly earlier, i
  56. tried added various tags where appropriate.
  57. * doc/index: added news item for May 5, 2002 - ado.net able
  58. to retrieve data now
  59. 2002-05-05 Daniel Morgan <[email protected]>
  60. * doc/ado-net: updated the current status which
  61. I kept forgetting to do.
  62. 2002-05-05 Daniel Morgan <[email protected]>
  63. * doc/ado-net: updated to includes an example for
  64. running ipc-daemon as a Windows service. Thanks
  65. to gonzalo.
  66. 2002-05-05 Daniel Morgan <[email protected]>
  67. * doc/ado-net: updated to include installation of
  68. PostgreSQL DBMS under cygwin. It is a TODO for Linux though.
  69. Also included notes on running the System.Data/Test/PostgresTest.cs
  70. that should work on a lot of Mono installations that have
  71. PostgreSQL installed. If not please let me, rodrigo, or gonzalo
  72. know.
  73. 2002-05-01 Rodrigo Moya <[email protected]>
  74. * doc/ado-net: updated a little bit.
  75. 2002-04-30 Jeffrey Stedfast <[email protected]>
  76. * configure.in: Added checks for timezone stuff.
  77. 2002-04-30 Dick Porter <[email protected]>
  78. * acconfig.h:
  79. * configure.in: Added option to disable using shared memory for
  80. handles
  81. 2002-04-28 Gonzalo Paniagua Javier <[email protected]>
  82. * configure.in: fix for conditional "THREADS_PTHREAD" was never
  83. defined problem under cygwin with latest version of automake and
  84. autoconf. Patch from Jeroen Janssen <[email protected]>.
  85. 2002-04-23 Gonzalo Paniagua Javier <[email protected]>
  86. * configure.in: removed -Wshadow from CFLAGS.
  87. 2002-04-12 Rodrigo Moya <[email protected]>
  88. * status/maintainers.xml: added danmorg and myself for System.Data.*
  89. classes.
  90. * status/class.xml: added System.Data.* classes.
  91. 2002-04-08 Dick Porter <[email protected]>
  92. * configure.in: Set -mno-cygwin here rather than in the build script
  93. 2002-04-05 Dietmar Maurer <[email protected]>
  94. * mono/tests/remoting2.cs: new test for async invoke of proxy calls
  95. 2002-03-29 Martin Baulig <[email protected]>
  96. * doc/jit-debug, docs/jit-debug-sample, docs/jit-debug-sample2:
  97. New files, added documentation for the debugging code.
  98. * doc/web/commands: Added the debugging pages.
  99. * docs/jit-debug: Removed, this is now on the web site.
  100. 2002-03-24 Martin Baulig <[email protected]>
  101. * man/mcs.1: Documented the new --debug option and added a section
  102. about debugging support.
  103. * man/mono.1: Documented the new --dwarf and --dwarf-plus options.
  104. 2002-03-21 Martin Baulig <[email protected]>
  105. * configure.in: Added check for <elf.h>.
  106. 2002-03-18 Dick Porter <[email protected]>
  107. * configure.in: Only look for libgc on the system. Default to not
  108. using GC at all, because it doesn't work with the jit.
  109. 2002-03-17 Miguel de Icaza <[email protected]>
  110. * configure.in: Add support for building the included boehm GC.
  111. Thu Mar 7 17:19:44 CET 2002 Paolo Molaro <[email protected]>
  112. * configure.in: detect Boehm GC libs and add --with-gc switch.
  113. Boehm GC needs to be explicitly enabled since the JIT currently fails
  114. in some cases with it.
  115. 2002-02-27 Dietmar Maurer <[email protected]>
  116. * mono/tests/fib.cs: it is now possible to pass a repeat count as
  117. command line argument, for example fib.exe 20 runs the test 20
  118. times.
  119. 2002-02-25 Sergey Chaban <[email protected]>
  120. * configure.in: added support for ARM target arch.
  121. Uncommented and modified arm-*-linux* target,
  122. added mono/arch/arm/Makefile to AC_OUTPUT list.
  123. 2002-02-21 Mark Crichton <[email protected]>
  124. * status/class.xml: Added contact info for RNGCryptoServiceProvider
  125. class and Rijndael classes.
  126. * status/maintainers.xml: Added contact info to maintainers list.
  127. 2002-02-21 Mark Crichton <[email protected]>
  128. * configure.in: Add checks for a system-provided entropy device
  129. * acconfig.h: Added HAVE_CRYPT_RNG and NAME_DEV_RANDOM
  130. 2002-02-20 Dick Porter <[email protected]>
  131. * acconfig.h:
  132. * configure.in: Always build without cygwin support on windows
  133. 2002-02-19 Radek Doulik <[email protected]>
  134. * mono/tests/pinvoke.cs: use more pinvoke test methods
  135. 2002-02-19 Radek Doulik <[email protected]>
  136. * mono/tests/libtest.c (mono_test_many_short_arguments): new test
  137. method
  138. (mono_test_many_byte_arguments): ditto
  139. 2002-02-18 Radek Doulik <[email protected]>
  140. * mono/tests/Makefile.am: added small test library for pinvoke
  141. testing
  142. * mono/tests/libtest.c (mono_test_many_int_arguments): new file,
  143. new function to test pinvoke
  144. * mono/tests/pinvoke.cs (Test): added pinvoked method with 10 int
  145. arguments
  146. * mono/tests/Makefile.am: display # of passing tests too
  147. added simple shared library libtest with testing function for
  148. pinvoke
  149. 2002-02-17 Radek Doulik <[email protected]>
  150. * mono/tests/Makefile.am (test): display # of failed tests
  151. 2002-02-16 Jeffrey Stedfast <[email protected]>
  152. * configure.in: Add checks for SOL_IP, SOL_TCP, and
  153. IP_PKTINFO. Also check for struct ip_mreqn.
  154. 2002-02-14 Jeffrey Stedfast <[email protected]>
  155. * configure.in: Add checks to see if we need to link to libsocket,
  156. libnsl, and/or librt. Also check for inet_pton and inet_aton.
  157. 2002-02-13 Jeffrey Stedfast <[email protected]>
  158. * acconfig.h: #undef USE_MONO_MUTEX
  159. * configure.in: If the system pthread implementation is lacking,
  160. default to using mono-mutex.
  161. 2002-02-05 Dietmar Maurer <[email protected]>
  162. * mono/tests/enum2.cs: new file with more enum tests.
  163. 2002-02-01 Dietmar Maurer <[email protected]>
  164. * mono/tests/jit-long.cs: added some SHL/SHR tests
  165. Fri Feb 1 15:32:36 CET 2002 Paolo Molaro <[email protected]>
  166. * configure.in: allow PKG_CONFIG_PATH for the build-platform
  167. pkg-config invocation.
  168. Fri Feb 1 15:13:25 CET 2002 Paolo Molaro <[email protected]>
  169. * configure.in: add some support/fixes for cross-compilation.
  170. 2002-01-14 Dietmar Maurer <[email protected]>
  171. * mono/tests/exception6.cs: new tests for ADD_OVF, MUL_OVF
  172. added tests for SUB_OVF, SUB_OVF_UN
  173. 2001-12-21 Dietmar Maurer <[email protected]>
  174. * mono/tests/Makefile.am (TESTSRC): disabled stream-writer test
  175. 2001-12-21 Aaron Weber <[email protected]>
  176. * doc/faq (A): added a linebreak that was missing and was causing
  177. a heading to appear badly.
  178. 2001-12-20 Aaron Weber <[email protected]>
  179. * doc/faq: added <a name=""> nav links, and moved all MSFT-related
  180. questions into a single section.
  181. 2001-12-17 Aaron Weber <[email protected]>
  182. * doc/faq (Q): Question-by-question, line-by-line revision.
  183. 2001-12-17 Dietmar Maurer <[email protected]>
  184. * mono/tests/time.cs: new test
  185. 2001-11-30 Radek Doulik <[email protected]>
  186. * configure.in: remove ACCESS_UNALIGNED="no" from ppc
  187. 2001-11-29 Radek Doulik <[email protected]>
  188. * configure.in (ACCESS_UNALIGNED): uncommented and modified
  189. powerpc-*-linux*
  190. generate mono/arch/ppc/Makefile
  191. 2001-11-26 Dietmar Maurer <[email protected]>
  192. * mono/tests/exception3.cs: modified the test to show a bug in the
  193. current exception handling implementation.
  194. 2001-11-13 Dick Porter <[email protected]>
  195. * configure.in: Some more tests for pthread features
  196. (specifically, glibc 2.1 doesnt define pthread_mutex_timedlock but
  197. still needs _GNU_SOURCE for PTHREAD_MUTEX_RECURSIVE)
  198. 2001-11-09 Dick Porter <[email protected]>
  199. * configure.in: Try and get large file support, but it's not fatal
  200. if it's not there (the io-layer just ignores the high word in that
  201. case.)
  202. Check for windows builds, and only bother to look for pthreads and
  203. large files if we're not building for cygwin or native win32. Not
  204. having pthread support on Posix systems is now a fatal error.
  205. * autogen.sh: Fix ACLOCAL_FLAGS - it wasn't being passed to
  206. aclocal
  207. 2001-10-15 Dietmar Maurer <[email protected]>
  208. * mono/tests/Makefile.am: removed JITTESTS, simply run all tests for
  209. target testjit.
  210. 2001-10-11 Dietmar Maurer <[email protected]>
  211. * docs/object-layout: more documentation
  212. Mon Oct 8 20:27:50 CEST 2001 Paolo Molaro <[email protected]>
  213. * configure.in: define NO_UNALIGNED_ACCESS for platforms that
  214. can't read on unaligned boundaries
  215. 2001-10-04 Dick Porter <[email protected]>
  216. * configure.in: Do some deeper checks on pthreads for some of the
  217. more interesting functions
  218. 2001-09-24 Dietmar Maurer <[email protected]>
  219. * mono/tests/Makefile.am (testjit): a new target to test the JITer
  220. * mono/tests/jit-*: added some test for the JITer
  221. 2001-09-23 Dick Porter <[email protected]>
  222. * configure.in: Arrange to compile dummy thread support routines
  223. if pthread isnt available
  224. 2001-09-23 Dick Porter <[email protected]>
  225. * configure.in: Check for pthread.h, so that we can check for the
  226. HAVE_PTHREAD_H define in config.h
  227. 2001-09-21 Dick Porter <[email protected]>
  228. * configure.in: Check for libpthread
  229. 2001-09-19 Dietmar Maurer <[email protected]>
  230. * mono/tests/test-ops.cs: added more tests
  231. Mon Sep 10 20:19:00 CEST 2001 Paolo Molaro <[email protected]>
  232. * configure.in: check for sizeof(void*) and for the architecture.
  233. 2001-09-05 Dick Porter <[email protected]>
  234. * autogen.sh: Fixed the section that adds $ACLOCAL_FLAGS to the
  235. aclocal invocation, so putting aclocal files in /usr/local works
  236. 2001-08-30 Dietmar Maurer <[email protected]>
  237. * *: removed the libffi dependency, mono now compiles on cygwin
  238. * mono/wrapper/build-dll: new file.
  239. 2001-08-28 Dietmar Maurer <[email protected]>
  240. * mono/tests/console.cs: impl.
  241. * mono/tests/box.cs: impl.
  242. * mono/tests/stream-writer.cs: impl.
  243. Mon Aug 27 20:24:26 CEST 2001 Paolo Molaro <[email protected]>
  244. * mono/tests/*: New test cases, mostly for virtual method dispatch.
  245. Use make testb for the slow benchmarking programs,
  246. make test for the usual regression test checks.
  247. 2001-08-22 Rodrigo Moya <[email protected]>
  248. * mono/cil/Makefile.am:
  249. * mono/wrapper/Makefile.am: use correct variables for installation
  250. directories
  251. Tue Aug 21 18:54:06 CEST 2001 Paolo Molaro <[email protected]>
  252. * mono/tests/exceptions*: enhanced and added more tests for
  253. exceptions.
  254. 2001-08-20 Miguel de Icaza <[email protected]>
  255. * mono/Makefile.am (SUBDIRS): Remove `test' from here to allow us
  256. to pass make distcheck
  257. * mono/wrapper/Makefile.am (EXTRA_DIST): Include genwrapper.pl
  258. * configure.in, Makefile.am, runtime/Makefile.am (dist-hook,
  259. install-data-hook): Added mechanism to distribute and install the
  260. dll files.
  261. 2001-08-20 Dietmar Maurer <[email protected]>
  262. * mono/tests/stream.cs: new tests for the Stream class
  263. * configure.in: I really need LIBTOOL for libmonowrapper.so, so I
  264. added it again.
  265. 2001-08-16 Alex Graveley <[email protected]>
  266. * configure.in: Replace AM_PROG_LIBTOOL with AC_PROG_RANLIB. This
  267. removes libtool dependency on all of Mono.
  268. 2001-08-10 Dietmar Maurer <[email protected]>
  269. * mono/tests/array.cs: more array tests
  270. 2001-08-09 Dietmar Maurer <[email protected]>
  271. * mono/tests/array.cs: more array tests
  272. 2001-08-06 Dietmar Maurer <[email protected]>
  273. * mono/tests/pinvoke.cs: we can now print strings ;-)
  274. * mono/tests/array.cs: new test for arrays
  275. 2001-08-02 Alex Graveley <[email protected]>
  276. * libffi/*: Import libffi CVS version, with minor changes to make it
  277. compile.
  278. * mono/interpreter/Makefile.am: Link against
  279. ../../libffi/.libs/libffi.a.
  280. * Makefile.am: Add libffi
  281. * autogen.sh: Replace with adapted gnome autogen.sh
  282. * configure.in: Add AC_CONFIG_SUBDIRS(libffi).
  283. 2001-08-02 Dietmar Maurer <[email protected]>
  284. * mono/tests/pinvoke.cs: impl.
  285. Wed Aug 1 22:34:52 CEST 2001 Paolo Molaro <[email protected]>
  286. * configure.in, mono/tests: added some tests for the interpreter.
  287. 2001-07-15 Sean MacIsaac <[email protected]>
  288. * doc/download: added instructions for cygwin
  289. * doc/c-sharp: removed bit about compiling
  290. * status/compare-assembly.cs: basedir should be there if
  291. parameters are provided.
  292. * status/makefile: made targets to dump info.
  293. 2001-07-15 Joe Shaw <[email protected]>
  294. * configure.in: Don't create doc/Makefile as there's nothing there
  295. to make.
  296. * Makefile.am: Don't build the doc directory because there's no
  297. Makefile.am there.
  298. * autogen.sh: Call aclocal with the $ACLOCAL_FLAGS env var.
  299. 2001-07-15 Miguel de Icaza <[email protected]>
  300. * doc/class-library (A): Updated FAQ with question on error 1595.
  301. 2001-07-14 Miguel de Icaza <[email protected]>
  302. * doc/index:
  303. Wed Jul 11 00:36:36 CEST 2001 Paolo Molaro <[email protected]>
  304. * status/*: scripts and data to create statistics about the
  305. class library status.
  306. 2001-07-09 Alex Graveley <[email protected]>
  307. * doc/makefile (clean): Add clean target.
  308. * doc/web/makefile (clean): Ditto.
  309. 2001-07-09 Alex Graveley <[email protected]>
  310. * doc/makefile (all-docs): Fix typo.
  311. 2001-05-30 Miguel de Icaza <[email protected]>
  312. * NEWS: