ChangeLog 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377
  1. 2003-12-16 Martin Baulig <[email protected]>
  2. * Makefile.am: In a Makefile.am, comments are started with `#' and
  3. not with `dnl' - I must have been an idiot ...
  4. 2003-12-10 Todd Berman <[email protected]>
  5. * configure.in: adding libicu url to the ICU: no message.
  6. 2003-12-05 John Luke <[email protected]>
  7. * data/config.in: new dll mapping entry for libgstreamer
  8. 2003-12-02 Atsushi Enomoto <[email protected]>
  9. * README: tiny fix ;-)
  10. 2003-11-26 Zoltan Varga <[email protected]>
  11. * configure.in: Add -fno-strict-aliasing to CFLAGS.
  12. * configure.in: Applied patch from [email protected]. Avoid linking in
  13. librt if not neccesary.
  14. 2003-11-24 Zoltan Varga <[email protected]>
  15. * configure.in: Fix signbit check. Fixes #51315.
  16. 2003-11-20 Jackson Harper <[email protected]>
  17. * data/machine.config: Add OutputCacheModule
  18. 2003-11-19 Jackson Harper <[email protected]>
  19. * doc/web/team.xml: New email address and job description
  20. * doc/web/team/jackson.png: Picture of me debugging...seems appropriate
  21. 2003-11-14 Jackson Harper <[email protected]>
  22. * Makefile.am: delete mscorlib.dll
  23. 2003-11-12 Jackson Harper <[email protected]>
  24. * Makefile.am: corlib is now named mscorlib.dll
  25. 2003-11-12 Zoltan Varga <[email protected]>
  26. * configure.in acconfig.h: Add check for signbit, which is missing in
  27. FreeBSD 4.x.
  28. 2003-11-07 Zoltan Varga <[email protected]>
  29. * configure.in: Remove debugging junk accidently checked in.
  30. * configure.in: Add new --with-nptl option to enable NPTL only
  31. features since auto-detection is not reliable.
  32. * autogen.sh: Fix previous patch and silence noisy GNU which.
  33. 2003-11-07 Bernie Solomon <[email protected]>
  34. * autogen.sh: tweak glibtool check so it works
  35. if which doesn't set return code properly
  36. 2003-11-07 Zoltan Varga <[email protected]>
  37. * autogen.sh: Silence noisy GNU which.
  38. * autogen.sh: Applied patch from Peter Teichman ([email protected]).
  39. Use 'glibtool' instead of 'libtool' on OSX.
  40. 2003-11-06 Zoltan Varga <zovarga@ws-zovarga2>
  41. * mono/benchmark/pinvoke.cs: New benchmark for testing the performance
  42. of the managed/unmanaged boundary.
  43. 2003-11-06 Zoltan Varga <[email protected]>
  44. * configure.in acconfig.h: Add check for __thread keyword in gcc.
  45. 2003-10-29 Dick Porter <[email protected]>
  46. * man/mono.1: Document MONO_EXTERNAL_ENCODINGS variable
  47. 2003-10-16 Miguel de Icaza <[email protected]>
  48. * man/mono.1: Document new --trace options
  49. 2003-10-13 Bernie Solomon <[email protected]>
  50. * configure.in: add hppa support (64bit only)
  51. make solaris build work with Forte compiler
  52. 2003-10-13 Zoltan Varga <[email protected]>
  53. * configure.in: Added check for pthread_attr_setstacksize.
  54. * mono/tests/ChangeLog: New file.
  55. 2003-10-13 Zoltan Varga <[email protected]>
  56. * mono/tests/Makefile.am: Link the tests with the test driver program
  57. used for the mini tests.
  58. 2003-10-10 Zoltan Varga <[email protected]>
  59. * mono/tests/libtest.c (mono_test_marshal_delegate): Added test for
  60. stdcall calling convention.
  61. 2003-10-09 Dick Porter <[email protected]>
  62. * acconfig.h:
  63. * configure.in: Check for ICU availability
  64. 2003-10-09 Bernie Solomon <[email protected]>
  65. * mono/tests/libtest.c: fix after merge of pinvoke2.cs
  66. 2003-10-07 Bernie Solomon <[email protected]>
  67. * mono/tests/Makefile.am mono/tests/libtest.c
  68. mono/tests/pinvoke18.cs: new test for bool marshalling.
  69. 2003-10-07 Bernie Solomon <[email protected]>
  70. * mono/scripts/Makefile.am mono/scripts/*.in: fix
  71. managed .exe paths so they are found under cygwin.
  72. 2003-10-07 Zoltan Varga <[email protected]>
  73. * mono/tests/pinvoke2.cs mono/tests/libtest.c: Fix array of structs
  74. test.
  75. 2003-10-06 Bernie Solomon <[email protected]>
  76. * mono/tests/pinvoke2.cs mono/tests/pinvoke11.cs
  77. mono/tests/libtest.c: Add more pass by value struct
  78. tests for platforms with more complex calling conventions
  79. (Sparc V9, HPPA 64 bit).
  80. 2003-10-06 Zoltan Varga <[email protected]>
  81. * mono/tests/pinvoke2.cs mono/tests/libtest.c: Add array of structs
  82. marshalling test.
  83. 2003-10-04 Bernie Solomon <[email protected]>
  84. * mono/tests/libtest.c: remove warnings except
  85. "no previous prototype"
  86. 2003-10-03 Bernie Solomon <[email protected]>
  87. * mono/tests/libtest.c: (test_lpwstr_marshal) remove undefined
  88. behaviour of increment, (mono_test_marshal_char) = should be ==
  89. 2003-09-30 Zoltan Varga <[email protected]>
  90. * mono/tests/remoting1.cs: Added test for interface casts on
  91. TransparentProxies.
  92. 2003-09-24 Bernie Solomon <[email protected]>
  93. * mono/tests/pinvoke*.cs, delegate4.cs, marshal10.cs, marshal4.cs
  94. marshal5.cs: remove .so from DllImport of libtest to aid portability.
  95. 2003-09-08 Zoltan Varga <[email protected]>
  96. * configure.in: Added check for valgrind headers.
  97. 2003-09-03 Zoltan Varga <[email protected]>
  98. * Makefile.am: Use $(MAKE) in even more places. Patch by Bernie Solomon
  99. ([email protected]).
  100. 2003-08-27 Zoltan Varga <[email protected]>
  101. * Makefile.am: Use $(MAKE) instead of make. Patch by Bernie Solomon
  102. ([email protected]).
  103. 2003-08-25 Zoltan Varga <[email protected]>
  104. * mono.pc.in: Added gthread-2.0.
  105. 2003-08-22 Zoltan Varga <[email protected]>
  106. * configure.in: Added gthread-2.0 to GLIB_CFLAGS and GLIB_LIBS, so we
  107. can call g_thread_init ().
  108. 2003-08-21 Zoltan Varga <[email protected]>
  109. * mono/tests/threadpool.cs mono/tests/threadpool1.cs: Make increments
  110. of static variables atomic. Fixes bug #47683.
  111. 2003-08-21 Johannes Roith <[email protected]>
  112. * mono/Makefile.am: small update. make sure, glib makes it in the build, add optional target for dependencies
  113. 2003-08-18 Johannes Roith <[email protected]>
  114. * mono/Makefile.am: add windows build option
  115. * mono/monowiz.win32.nsi: add windows build script
  116. * mono/mono-win32-light.bmp: add bitmap
  117. 2003-08-16 Zoltan Varga <[email protected]>
  118. * mono/tests/checked.cs: Added mul.ovf tests.
  119. 2003-08-15 Duncan Mak <[email protected]>
  120. * doc/mysql: Change references to ByteFX.Data.MySQLClient to the
  121. correct ByteFX.Data.MySqlClient (note the change in
  122. capitalization). Thanks to Tom Wagner <[email protected]> for
  123. spotting the error.
  124. 2003-08-15 Zoltan Varga <[email protected]>
  125. * mono/tests/bug-47295.cs: Regression test for bug #47295.
  126. 2003-08-11 Duncan Mak <[email protected]>
  127. * runtime/Makefile.am (assemblies_DATA): Add Mono.Cairo.dll.
  128. Sun Aug 3 21:12:13 BST 2003 Malte Hildingson <[email protected]>
  129. * configure.in: added FPU test for ARM.
  130. Thu Jul 31 16:19:07 CEST 2003 Paolo Molaro <[email protected]>
  131. * configure.in, etc.: portability fixes and support for
  132. buidling outside the srcdir from Laurent Morichetti <[email protected]>.
  133. 2003-07-22 Duncan Mak <[email protected]>
  134. * runtime/Makefile.am: Remove sqlsharp as we no longer distribute it.
  135. 2003-07-22 Zoltan Varga <[email protected]>
  136. * mono/tests/Makefile.am: Add missing test. Make tests interruptable
  137. by Ctrl-C. Add testinterp target to run the tests with the interpreter.
  138. Do not try to build vararg.cs under mcs.
  139. * configure.in: Fix detection of GC_gcj_malloc.
  140. 2003-07-14 Jerome Laban <[email protected]>
  141. * acconfig.h:
  142. * configure.in: Check for gethostbyname2_r availability.
  143. * data/machine.config: Added section system.net/settings. Added
  144. option for IPv6 availability.
  145. 2003-07-13 Zoltan Varga <[email protected]>
  146. * mono/tests/cattr-object.cs: Make it run under both mono and MS.NET.
  147. * mono/tests/struct.cs: Add test for unboxing trampolines.
  148. * mono/tests/bug-27420.cs: new regression test.
  149. * mono/tests/Makefile.am: skip vararg test since it does not compile
  150. under mono. Add testinterp target. Add new tests.
  151. 2003-07-10 Martin Willemoes Hansen
  152. * doc/web/team.xml : Modified my tasks a bit.
  153. 2003-07-01 Paolo Molaro <[email protected]>
  154. * acconfig.h, configure.in: added bundle support.
  155. 2003-06-10 Dick Porter <[email protected]>
  156. * acconfig.h:
  157. * configure.in: Check for struct ip_mreq if struct ip_mreqn isn't
  158. available.
  159. 2003-06-10 Zoltan Varga <[email protected]>
  160. * configure.in: Define HAVE_GC_GCJ_MALLOC for included libgc.
  161. 2003-06-10 Martin Baulig <[email protected]>
  162. * configure.in: Fall back to boehm if we don't have a libgc
  163. subdirectory.
  164. 2003-06-10 Martin Baulig <[email protected]>
  165. * configure.in: Make the libgc stuff actually work; we now create
  166. a shared libmonogc.so when using the included libgc.
  167. 2003-06-09 Martin Baulig <[email protected]>
  168. * configure.in: Only check for gc if --with-gc=boehm.
  169. 2003-06-08 Martin Baulig <[email protected]>
  170. * configure.in: Tell libgc's configure about our threads library.
  171. 2003-06-08 Martin Baulig <[email protected]>
  172. * libgc/: Integrate the libgc module here.
  173. [Note: A simple `cvs update' won't work this time; you either need
  174. to re-checkout the `mono' module or manually move the `libgc'
  175. module here.]
  176. * configure.in (--with-gc): Added `included' option to use the
  177. included libgc. This is now also the default.
  178. (LIBGC_CFLAGS, LIBGC_LIBS): Put the libgc stuff here and AC_SUBST it.
  179. (INCLUDED_LIBGC): New automake conditional.
  180. (USE_INCLUDED_LIBGC): #define this if appropriate.
  181. * autogen.sh: Run libgc/autogen.sh.
  182. * Makefile.am (SUBDIRS): Added libgc.
  183. 2003-06-05 Duncan Mak <[email protected]>
  184. * mono.spec.in (Requires): Add libxml2 and libxslt dependency on
  185. the package.
  186. 2003-05-19 Dick Porter <[email protected]>
  187. * configure.in: Netbsd build fix by [email protected].
  188. 2003-05-10 Martin Willemoes Hansen <[email protected]>
  189. * scripts/Makefile.am: Added monoresgen secutil sqlsharp
  190. shell wrapper scripts.
  191. 2003-05-08 Zoltan Varga <[email protected]>
  192. * mono/tests/Makefile.am:
  193. - Compile with mcs.
  194. - Disable some warnings.
  195. - Added executables to clean target.
  196. - Make testjit the default target.
  197. - Print list of failed tests at the end of a test run.
  198. - Abort tests when Ctrl-C is pressed.
  199. * mono/tests/test-driver: Return with a special exit code when
  200. SIGINT is detected.
  201. * mono/tests/checked.cs: Make it compile.
  202. 2003-05-02 Miguel de Icaza <[email protected]>
  203. * runtime/Makefile.am ($(monobins_DATA)): Use explicit file names
  204. for the target exe binaries.
  205. Copy cilc.exe and secutil.exe from the right paths to the right
  206. location.
  207. Add missing assemblies.
  208. 2003-05-02 Alp Toker <[email protected]>
  209. * data/config.in: new dll mapping entry for libglade
  210. 2003-05-01 Duncan Mak <[email protected]>
  211. * scripts/Makefile.am:
  212. * runtime/Makefile.am: Install cilc and ilasm.
  213. 2003-04-29 Dietmar Maurer <[email protected]>
  214. * mono/tests/Makefile.am (JITTEST_PROG): use mini/mono
  215. 2003-04-16 Charles Iliya Krempeaux <[email protected]>
  216. * doc/web/team.xml : Added myself to it.
  217. 2003-04-10 Duncan Mak <[email protected]>
  218. * doc/web/render-team-page.cs: Make the names of the element be
  219. lowercase instead. BenM says this makes it XHTML compliant; heck,
  220. I'm generating this from an XmlDocument already, why not make it
  221. XHTML compliant?
  222. 2003-04-10 Duncan Mak <[email protected]>
  223. * doc/web/render-team-page.cs (Compare): Correctly fix
  224. ContributorComparer.
  225. (RenderHtml): Add some SetAttribute loving to make it render prettier.
  226. * doc/web/team.xml: Revert excessive indenting.
  227. 2003-04-07 Martin Baulig <[email protected]>
  228. * mono/mini/: Added this directory to the build; install `mini'
  229. and `libmini.la'.
  230. 2003-04-07 Duncan Mak <[email protected]>
  231. * doc/web/render-team-page.cs: Fix ContributorComparer.
  232. 2003-04-04 Duncan Mak <[email protected]>
  233. * doc/web/render-team-page.cs: Make it use 'none.png' if no image
  234. are specified in the XML.
  235. * doc/web/team.xml: Remove the comment.
  236. * doc/web/render-team-page.cs: Make it not output a full HTML file.
  237. 2003-04-04 Duncan Mak <[email protected]>
  238. * doc/web/commands:
  239. * doc/web/makefile: Add team page information.
  240. * doc/web/team.xml:
  241. * doc/web/render-team-page.cs: Code for rendering a team page.
  242. 2003-04-02 Duncan Mak <[email protected]>
  243. * doc/web/makefile: Add a new make target for generating a team
  244. page on go-mono.com.
  245. 2003-04-04 Zoltan Varga <[email protected]>
  246. * configure.in: Added check for GC_gcj_malloc.
  247. 2003-04-04 Martin Willemoes Hansen <[email protected]>
  248. * man/sqlsharp.1: changed pass= to password= for the
  249. PostgreSql provider.
  250. >>>>>>> 1.166
  251. 2003-03-31 Gonzalo Paniagua Javier <[email protected]>
  252. * data/machine.config: added SessionStateModule to httpModules section.
  253. 2003-02-13 Gonzalo Paniagua Javier <[email protected]>
  254. * data/machine.config: added default sessionState section and handler.
  255. 2003-02-17 Daniel Morgan <[email protected]>
  256. * doc/provider-factory: add new web page
  257. about Mono.Data's ProviderFactory
  258. * doc/web/commands
  259. * doc/web/makefile: add provider-factory web page to build
  260. * doc/ado-net
  261. * doc/ibmdb2
  262. * doc/postgresql
  263. * doc/sqlclient
  264. * doc/tdsclient
  265. * doc/sybase
  266. * doc/mysql
  267. * doc/firebird
  268. * doc/oracle
  269. * doc/oledb
  270. * doc/odbc
  271. * doc/sqlite: updated web pages
  272. 2003-02-16 Martin Baulig <[email protected]>
  273. * doc/jit-debug-sample
  274. * doc/jit-debug-sample2: Removed.
  275. * doc/jit-debug: Updated.
  276. 2003-02-13 Daniel Morgan <[email protected]>
  277. * doc/screenshots
  278. * doc/ado-net
  279. * doc/oracle
  280. * doc/gtk-sharp: update web pages
  281. 2003-02-13 Gonzalo Paniagua Javier <[email protected]>
  282. * data/machine.config: added sample globalization section.
  283. 2003-02-12 Gonzalo Paniagua Javier <[email protected]>
  284. * data/machine.config: added UrlAuthorizationModule and
  285. AuthenticationConfigHandler.
  286. 2003-02-11 Tim Coleman <[email protected]>
  287. * data/config.in: Add mapping for Oracle call interface
  288. (OCI) native libraries.
  289. 2003-02-04 Gonzalo Paniagua Javier <[email protected]>
  290. * configure.in: added check for sys/un.h.
  291. 2003-01-29 Daniel Morgan <[email protected]>
  292. * doc/postgresql
  293. * doc/mysql
  294. * doc/ado-net: updates to web pages
  295. * man/sqlsharp.1: update to man page
  296. 2003-01-28 Gonzalo Paniagua Javier <[email protected]>
  297. * configure.in: added WIN32_THREADS flag when building under windows.
  298. It seems that the header files of the gc do not always define it when
  299. GC_WIN32_THREADS is defined.
  300. 2003-01-26 Daniel Morgan <[email protected]>
  301. * doc/index
  302. * doc/ado-net
  303. * doc/firebird
  304. * doc/ibmdb2
  305. * doc/mysql
  306. * doc/odbc
  307. * doc/oledb
  308. * doc/oracle
  309. * doc/postgresql
  310. * doc/sqlclient
  311. * doc/sqlite
  312. * doc/sybase
  313. * doc/tdsclient: corrections
  314. 2003-01-26 Duncan Mak <[email protected]>
  315. * doc/jit-debug: Update the links. Thanks for Andy Oliver for the report.
  316. 2003-01-22 Martin Baulig <[email protected]>
  317. * configure.in: Set version number to 0.19.1.
  318. Heads up: I'm going to commit some changes to the debugger
  319. which'll require you to use this new runtime, so if you update the
  320. debugger from CVS, you also need this new runtime.
  321. 2003-01-20 Duncan Mak <[email protected]>
  322. * configure.in: Bump the release number to 0.19.
  323. 2003-01-19 Daniel Morgan <[email protected]>
  324. * doc/ibmdb2: added file which is new web page
  325. about IBM DB2 data provider at Mono.Data.DB2Client
  326. * makefile
  327. * commands: added ibmdb2 web page to go-mono web site
  328. * doc/ado-net: added a couple more developers email, plus made the
  329. email spam resistant, added Mono's DB2 data provider to list,
  330. added more info about the ProviderFactory and retrieving data using
  331. ADO.NET from ASP.NET, add notes about testing, misc cleanup
  332. * doc/mysql
  333. * doc/postgresql
  334. * doc/sqlclient
  335. * doc/oracle
  336. * doc/tdsclient
  337. * doc/firebird
  338. * doc/oledb
  339. * doc/odbc
  340. * doc/sybase
  341. * doc/sqlite: added testing notes and C# examples
  342. * doc/gtk-sharp: added links for GTK# for Windows
  343. * man/sqlsharp.1: added providers Npgsql and MySQLNet
  344. 2003-01-17 Duncan Mak <[email protected]>
  345. * runtime/Makefile.am: Add the new Mono.Data.DB2Client.dll.
  346. 2003-01-16 Martin Baulig <[email protected]>
  347. * configure.in (GTHREAD_LIBS, GTHREAD_CFLAGS): Removed the gthread
  348. check again, we're now using the mono/io-layer for this.
  349. Wed Jan 15 16:20:54 CET 2003 Paolo Molaro <[email protected]>
  350. * configure.in: allow MacOSX (from various people).
  351. 2003-01-14 Martin Baulig <[email protected]>
  352. * configure.in (GTHREAD_LIBS, GTHREAD_CFLAGS): Added check for gthread.
  353. 2002-12-27 Jeroen Janssen <[email protected]>
  354. * fixed url for System.Windows.Forms in the class status
  355. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  356. * configure.in: moved struct tm field tm_gmtoff check before the check
  357. for timezone global variable. This makes Timezone work for me (debian
  358. sid, linux, x86, which has both the field and the global variables).
  359. 2002-12-10 Daniel Morgan <[email protected]>
  360. * doc/oracle: added file which is
  361. a new web page oracle.html
  362. * doc/ado-net: clean up and add link
  363. to oracle.html
  364. * doc/web/commands
  365. * doc/web/makefile: added oracle.html
  366. 2002-12-10 Daniel Morgan <[email protected]>
  367. * man/Makefile.am: changed sqlsharpcli.1 to sqlsharp.1
  368. * man/sqlsharpcli.1: renamed to sqlsharp.1
  369. 2002-12-09 Tim Haynes <[email protected]>
  370. * mono/jit/jit.c
  371. * mono/metadata/icall.c: added mono_install_get_config_dir() to
  372. utilize the MONO_CFG_DIR environment variable for specifying
  373. different machine.configs.
  374. 2002-12-06 Duncan Mak <[email protected]>
  375. * data/Makefile.am (EXTRA_DIST): Add machine.config
  376. (DISTCLEANFILES): Add config.
  377. 2002-11-30 Daniel Morgan <[email protected]>
  378. * man/sqlsharpcli.1: added file - a man page
  379. for SQL# CLI
  380. * man/Makefile.am: added sqlsharpcli.1 to man_MANS
  381. 2002-11-20 Daniel Morgan <[email protected]>
  382. * doc/firebird: updated web page
  383. 2002-11-19 Mike Kestner <[email protected]>
  384. * data/Config.in : added the gtk# dll mapping entries
  385. 2002-11-19 Daniel Morgan <[email protected]>
  386. * doc/firebird: updated web page based on input
  387. from the firebird .net data provider author
  388. Mon Nov 18 16:40:34 CET 2002 Paolo Molaro <[email protected]>
  389. * configure.in, mono/os/gc_wrapper.h: check that the gc headers have
  390. been installed.
  391. 2002-11-12 Daniel Morgan <[email protected]>
  392. * doc/oledb
  393. * doc/odbc
  394. * doc/mysql
  395. * doc/sqlite
  396. * doc/sqlclient
  397. * doc/tdsclient
  398. * doc/sybase
  399. * doc/firebird: added web pages
  400. for each specific data provider
  401. * doc/ado-net
  402. * doc/postgresql: updated web page
  403. with current status
  404. * doc/web/commands
  405. * doc/web/makefile: updated to include
  406. new web pages
  407. 2002-11-06 Gonzalo Paniagua Javier <[email protected]>
  408. * autogen.sh: make it work when MONO_PATH is set and it has more than
  409. one directory or ends in ":". Also check that the directory added to
  410. ACLOCAL_FLAGS and PATH exist (aclocal fails if they don't).
  411. 2002-10-22 Miguel de Icaza <[email protected]>
  412. * configure.in: Also allow the miss-spelled bohem.
  413. 2002-10-18 Daniel Morgan <[email protected]>
  414. * doc/ado-net
  415. * doc/postgresql
  416. * doc/tds-providers: cleaned up the web pages
  417. * doc/web/commands: postgresql.html page was mistyped
  418. 2002-10-18 Daniel Morgan <[email protected]>
  419. * doc/ado-net: updated status of
  420. the ADO.NET functionality and providers
  421. and added link to tds-providers.html
  422. * doc/tds-providers: added file to
  423. describe the design and status of
  424. the SqlClient, SybaseClient, and TdsClient
  425. ADO.NET providers.
  426. * doc/web/makefile
  427. * doc/web/command: added new web page
  428. tds-providers.html to build of www.go-mono.com web site
  429. 2002-10-17 Daniel Morgan <[email protected]>
  430. * doc/web/makefile
  431. * doc/web/commands: web page
  432. postgresql needed to be added
  433. 2002-10-13 Mark Crichton <[email protected]>
  434. * doc/index: Even more spelling errors fixed.
  435. 2002-10-13 Daniel Morgan <[email protected]>
  436. * doc/adonet: updated status of all providers, added links,
  437. and added information
  438. about the Mono.Data.SqliteClient provider that
  439. Vladimir Vukicevic contributed. Added Brian Ritchie's
  440. and Vladimir Vukicevic's email addresses as
  441. people to contact about ADO.NET in Mono.
  442. Added information about SQL#, configuration tools,
  443. and an ADO.NET Multiplexor, etc...
  444. 2002-10-10 Daniel Morgan <[email protected]>
  445. * doc/index: corrected some mistypes
  446. * doc/adonet: updated the status and plans of all the ADO.NET providers
  447. and moved PostgreSQL specific stuff to doc/postgresql
  448. * doc/postgresql: added new file to detail
  449. the status of the PostgreSQL ADO.NET provider
  450. and provide test notes for setting it up
  451. 2002-10-09 Daniel Morgan <[email protected]>
  452. * data/config.in: add entry for MySQL native shared libraries
  453. which are different on Windows and Linux
  454. 2002-10-04 Diego Sevilla Ruiz <[email protected]>
  455. * doc/ccvs: Fixed some ugly formatting.
  456. 2002-10-03 Dick Porter <[email protected]>
  457. * acconfig.h:
  458. * configure.in: Freebsd pthread_t is a pointer
  459. 2002-10-01 Duncan Mak <[email protected]>
  460. * mono/os/Makefile.am: Add gc_wrapper.h.
  461. * runtime/Makefile.am: Fix the path for monoresgen.exe.
  462. 2002-09-27 Dick Porter <[email protected]>
  463. * configure.in: Check for semaphore.h. Patch for BSD from
  464. [email protected] (Julio Merino).
  465. 2002-09-20 Duncan Mak <[email protected]>
  466. * data/config.in: Added reference to libxslt.
  467. 2002-09-20 Mark Crichton <[email protected]>
  468. * configure.in: added NEED_LINK_UNLINK to make io-layer more portable.
  469. Linux has a "virtual fs" for UNIX sockets, Solaris and BSD don't.
  470. For systems that do not have such a virtual FS, define
  471. NEED_LINK_UNLINK.
  472. * acconfig.h: added NEED_LINK_UNLINK
  473. Wed Sep 4 18:09:58 CEST 2002 Paolo Molaro <[email protected]>
  474. * configure.in: add some needed defines to fix support of
  475. threads in the GC.
  476. 2002-09-19 Mark Crichton <[email protected]>
  477. * configure.in: Added checks for Solaris to use X/Open functionality.
  478. Really needed for the io-layer code.
  479. 2002-09-15 Andrew Birkett <[email protected]>
  480. * man/mcs.1: --probe is now --expect-error.
  481. 2002-09-09 Dick Porter <[email protected]>
  482. * acconfig.h:
  483. * configure.in: Simplify thread checks, by using canned rules for
  484. particular systems (based on the sleepycat db configure.in).
  485. Tested on linux/x86, freebsd and w32. Solaris also added, but I
  486. don't have a solaris machine to try it on.
  487. 2002-09-04 Juli Mallett <[email protected]>
  488. * configure.in: Include <sys/types.h> when checking <sys/un.h> stuff.
  489. 2002-09-02 Diego Sevilla Ruiz <[email protected]>
  490. * doc/ccvs: Added how to convert SSH keys (from SSH Communications
  491. Security) to the OpenSSH keys required by mono CVS
  492. access.
  493. 2002-09-01 Juli Mallett <[email protected]>
  494. * configure.in, mono/interpreter/interp.c,
  495. mono/io-layer/handles.c, mono/io-layer/processes.c,
  496. mono/io-layer/threads.c, mono/io-layer/timed-thread.c,
  497. mono/io-layer/wait.c, mono/jit/helpers.c, mono/jit/jit.c,
  498. mono/metadata/appdomain.c, mono/metadata/class.c,
  499. mono/metadata/domain.c, mono/metadata/gc.c,
  500. mono/metadata/object.c, mono/metadata/reflection.c,
  501. mono/metadata/threads.c, mono/os/gc_wrapper.h,
  502. mono/utils/mono-hash.c: Add a new header, gc_wrapper.h, to
  503. wrap inclusion of gc.h for boehm, since from FreeBSD and
  504. OpenBSD ports, gc.h is <gc.h>, but on GNU it seems to be
  505. in <gc/gc.h>. This will reduce the diffs FreeBSD ports has
  506. to apply, and also makes it possible for me to build with
  507. GC on OpenBSD/macppc built by hand.
  508. 2002-09-01 Juli Mallett <[email protected]>
  509. * configure.in: On BSD don't try to use -ldl, we simply don't use it.
  510. 2002-09-01 Juli Mallett <[email protected]>
  511. * mono/dis/dis-cil.c:
  512. * configure.in: Check for <wchar.h> via autoconf, don't use it if
  513. it isn't there, as it seems to work fine without it on OpenBSD.
  514. 2002-08-28 Dick Porter <[email protected]>
  515. * mono/os/win32/util.c:
  516. * mono/os/unix/util.c:
  517. * mono/os/util.h: mono_set_rootdir() doesnt take any args now.
  518. (It doesn't do anything on unix builds, and the w32 version no
  519. longer needs an arg.)
  520. * configure.in: Add HOST_CC for w32 builds
  521. Tue Aug 27 18:17:43 CEST 2002 Paolo Molaro <[email protected]>
  522. * configure.in: remove iconv checks.
  523. 2002-08-24 Juli Mallett <[email protected]>
  524. * configure.in: Recognise OpenBSD/macppc as PowerPC.
  525. Tue Aug 20 15:15:52 CEST 2002 Paolo Molaro <[email protected]>
  526. * configure.in: patch by [email protected] (Daniel Resare)
  527. to error out if bison is missing.
  528. 2002-08-17 Gonzalo Paniagua Javier <[email protected]>
  529. * configure.in: don't link against libdl on windoze.
  530. 2002-08-12 Dick Porter <[email protected]>
  531. * mono.pc.in: Add $includedir to Cflags
  532. Fri Jul 19 18:38:38 CEST 2002 Paolo Molaro <[email protected]>
  533. * configure.in, Makefile.am, mono.pc.in: add a mono.pc file for use
  534. with pkg-config.
  535. * */Makefile.am: makefile overhaul to create a shared libmono library.
  536. * */*.h: do not include config.h in headers that should be installed.
  537. 2002-07-12 Dick Porter <[email protected]>
  538. * acconfig.h:
  539. * configure.in: Check the size of sockaddr_un.sun_path
  540. 2002-06-23 Miguel de Icaza <[email protected]>
  541. * man/Makefile.am (man_MANS): Added new man page
  542. * man/mono-config.5: New manual page describing the mono-config
  543. file format.
  544. 2002-06-10 Jaroslaw Kowalski <[email protected]>
  545. * configure.in: added checks for MSG_NOSIGNAL
  546. 2002-05-30 Daniel Morgan <[email protected]>
  547. * doc/ado-net: update the ado-net web page on go-mono.com
  548. input parameters support, beginnings of Mono.Data.MySQL
  549. and System.Data.OleDb, updated the sample source code,
  550. and output from a PostgresTest
  551. 2002-05-21 Martin Baulig <[email protected]>
  552. * mono.1: Documented the "--debug-args" debugging arguments.
  553. 2002-05-21 Martin Baulig <[email protected]>
  554. * mono.1: Updated to reflect my latest changes and beautified this a bit.
  555. (FIXME: There are still command line argument which aren't documented here.)
  556. 2002-05-19 Daniel Morgan <[email protected]>
  557. * doc/ado-net: updated page to include C# code snippets using
  558. System.Data. Update status: handle reading NULL values, DataSet/DataAdapter
  559. works, executing/reading multiple results, and stored procedures.
  560. And other tweaks about the providers.
  561. 2002-05-19 Martin Baulig <[email protected]>
  562. * mono/Makefile.am (SUBDIRS): Added `os', it's referenced by
  563. interpreter/Makefile.am.
  564. Wed May 15 12:22:09 CEST 2002 Paolo Molaro <[email protected]>
  565. * configure.in: search for pthread functions also in libc_r (patch
  566. from Garrett Rooney <[email protected]>).
  567. 2002-05-11 Daniel Morgan <[email protected]>
  568. * doc/ado-net: added instructions for installing PostgreSQL on Linux
  569. and for using nant to re-compile just the System.Data.dll assembly
  570. on Windows.
  571. 2002-05-10 Rodrigo Moya <[email protected]>
  572. * doc/ado-net: added instructions for compiling System.Data.dll
  573. (a subset of) on Linux.
  574. 2002-05-10 Daniel Morgan <[email protected]>
  575. * doc/ado-net: added links
  576. 2002-05-09 Dick Porter <[email protected]>
  577. * configure.in: Set CPPFLAGS not CFLAGS (bug 23767)
  578. 2002-05-05 Daniel Morgan <[email protected]>
  579. * doc/ado-net: correct formatting
  580. * doc/index: added credit i forgot to add
  581. 2002-05-05 Daniel Morgan <[email protected]>
  582. * doc/ado-net: i did not format it correctly earlier, i
  583. tried added various tags where appropriate.
  584. * doc/index: added news item for May 5, 2002 - ado.net able
  585. to retrieve data now
  586. 2002-05-05 Daniel Morgan <[email protected]>
  587. * doc/ado-net: updated the current status which
  588. I kept forgetting to do.
  589. 2002-05-05 Daniel Morgan <[email protected]>
  590. * doc/ado-net: updated to includes an example for
  591. running ipc-daemon as a Windows service. Thanks
  592. to gonzalo.
  593. 2002-05-05 Daniel Morgan <[email protected]>
  594. * doc/ado-net: updated to include installation of
  595. PostgreSQL DBMS under cygwin. It is a TODO for Linux though.
  596. Also included notes on running the System.Data/Test/PostgresTest.cs
  597. that should work on a lot of Mono installations that have
  598. PostgreSQL installed. If not please let me, rodrigo, or gonzalo
  599. know.
  600. 2002-05-01 Rodrigo Moya <[email protected]>
  601. * doc/ado-net: updated a little bit.
  602. 2002-04-30 Jeffrey Stedfast <[email protected]>
  603. * configure.in: Added checks for timezone stuff.
  604. 2002-04-30 Dick Porter <[email protected]>
  605. * acconfig.h:
  606. * configure.in: Added option to disable using shared memory for
  607. handles
  608. 2002-04-28 Gonzalo Paniagua Javier <[email protected]>
  609. * configure.in: fix for conditional "THREADS_PTHREAD" was never
  610. defined problem under cygwin with latest version of automake and
  611. autoconf. Patch from Jeroen Janssen <[email protected]>.
  612. 2002-04-23 Gonzalo Paniagua Javier <[email protected]>
  613. * configure.in: removed -Wshadow from CFLAGS.
  614. 2002-04-12 Rodrigo Moya <[email protected]>
  615. * status/maintainers.xml: added danmorg and myself for System.Data.*
  616. classes.
  617. * status/class.xml: added System.Data.* classes.
  618. 2002-04-08 Dick Porter <[email protected]>
  619. * configure.in: Set -mno-cygwin here rather than in the build script
  620. 2002-04-05 Dietmar Maurer <[email protected]>
  621. * mono/tests/remoting2.cs: new test for async invoke of proxy calls
  622. 2002-03-29 Martin Baulig <[email protected]>
  623. * doc/jit-debug, docs/jit-debug-sample, docs/jit-debug-sample2:
  624. New files, added documentation for the debugging code.
  625. * doc/web/commands: Added the debugging pages.
  626. * docs/jit-debug: Removed, this is now on the web site.
  627. 2002-03-24 Martin Baulig <[email protected]>
  628. * man/mcs.1: Documented the new --debug option and added a section
  629. about debugging support.
  630. * man/mono.1: Documented the new --dwarf and --dwarf-plus options.
  631. 2002-03-21 Martin Baulig <[email protected]>
  632. * configure.in: Added check for <elf.h>.
  633. 2002-03-18 Dick Porter <[email protected]>
  634. * configure.in: Only look for libgc on the system. Default to not
  635. using GC at all, because it doesn't work with the jit.
  636. 2002-03-17 Miguel de Icaza <[email protected]>
  637. * configure.in: Add support for building the included boehm GC.
  638. Thu Mar 7 17:19:44 CET 2002 Paolo Molaro <[email protected]>
  639. * configure.in: detect Boehm GC libs and add --with-gc switch.
  640. Boehm GC needs to be explicitly enabled since the JIT currently fails
  641. in some cases with it.
  642. 2002-02-27 Dietmar Maurer <[email protected]>
  643. * mono/tests/fib.cs: it is now possible to pass a repeat count as
  644. command line argument, for example fib.exe 20 runs the test 20
  645. times.
  646. 2002-02-25 Sergey Chaban <[email protected]>
  647. * configure.in: added support for ARM target arch.
  648. Uncommented and modified arm-*-linux* target,
  649. added mono/arch/arm/Makefile to AC_OUTPUT list.
  650. 2002-02-21 Mark Crichton <[email protected]>
  651. * status/class.xml: Added contact info for RNGCryptoServiceProvider
  652. class and Rijndael classes.
  653. * status/maintainers.xml: Added contact info to maintainers list.
  654. 2002-02-21 Mark Crichton <[email protected]>
  655. * configure.in: Add checks for a system-provided entropy device
  656. * acconfig.h: Added HAVE_CRYPT_RNG and NAME_DEV_RANDOM
  657. 2002-02-20 Dick Porter <[email protected]>
  658. * acconfig.h:
  659. * configure.in: Always build without cygwin support on windows
  660. 2002-02-19 Radek Doulik <[email protected]>
  661. * mono/tests/pinvoke.cs: use more pinvoke test methods
  662. 2002-02-19 Radek Doulik <[email protected]>
  663. * mono/tests/libtest.c (mono_test_many_short_arguments): new test
  664. method
  665. (mono_test_many_byte_arguments): ditto
  666. 2002-02-18 Radek Doulik <[email protected]>
  667. * mono/tests/Makefile.am: added small test library for pinvoke
  668. testing
  669. * mono/tests/libtest.c (mono_test_many_int_arguments): new file,
  670. new function to test pinvoke
  671. * mono/tests/pinvoke.cs (Test): added pinvoked method with 10 int
  672. arguments
  673. * mono/tests/Makefile.am: display # of passing tests too
  674. added simple shared library libtest with testing function for
  675. pinvoke
  676. 2002-02-17 Radek Doulik <[email protected]>
  677. * mono/tests/Makefile.am (test): display # of failed tests
  678. 2002-02-16 Jeffrey Stedfast <[email protected]>
  679. * configure.in: Add checks for SOL_IP, SOL_TCP, and
  680. IP_PKTINFO. Also check for struct ip_mreqn.
  681. 2002-02-14 Jeffrey Stedfast <[email protected]>
  682. * configure.in: Add checks to see if we need to link to libsocket,
  683. libnsl, and/or librt. Also check for inet_pton and inet_aton.
  684. 2002-02-13 Jeffrey Stedfast <[email protected]>
  685. * acconfig.h: #undef USE_MONO_MUTEX
  686. * configure.in: If the system pthread implementation is lacking,
  687. default to using mono-mutex.
  688. 2002-02-05 Dietmar Maurer <[email protected]>
  689. * mono/tests/enum2.cs: new file with more enum tests.
  690. 2002-02-01 Dietmar Maurer <[email protected]>
  691. * mono/tests/jit-long.cs: added some SHL/SHR tests
  692. Fri Feb 1 15:32:36 CET 2002 Paolo Molaro <[email protected]>
  693. * configure.in: allow PKG_CONFIG_PATH for the build-platform
  694. pkg-config invocation.
  695. Fri Feb 1 15:13:25 CET 2002 Paolo Molaro <[email protected]>
  696. * configure.in: add some support/fixes for cross-compilation.
  697. 2002-01-14 Dietmar Maurer <[email protected]>
  698. * mono/tests/exception6.cs: new tests for ADD_OVF, MUL_OVF
  699. added tests for SUB_OVF, SUB_OVF_UN
  700. 2001-12-21 Dietmar Maurer <[email protected]>
  701. * mono/tests/Makefile.am (TESTSRC): disabled stream-writer test
  702. 2001-12-21 Aaron Weber <[email protected]>
  703. * doc/faq (A): added a linebreak that was missing and was causing
  704. a heading to appear badly.
  705. 2001-12-20 Aaron Weber <[email protected]>
  706. * doc/faq: added <a name=""> nav links, and moved all MSFT-related
  707. questions into a single section.
  708. 2001-12-17 Aaron Weber <[email protected]>
  709. * doc/faq (Q): Question-by-question, line-by-line revision.
  710. 2001-12-17 Dietmar Maurer <[email protected]>
  711. * mono/tests/time.cs: new test
  712. 2001-11-30 Radek Doulik <[email protected]>
  713. * configure.in: remove ACCESS_UNALIGNED="no" from ppc
  714. 2001-11-29 Radek Doulik <[email protected]>
  715. * configure.in (ACCESS_UNALIGNED): uncommented and modified
  716. powerpc-*-linux*
  717. generate mono/arch/ppc/Makefile
  718. 2001-11-26 Dietmar Maurer <[email protected]>
  719. * mono/tests/exception3.cs: modified the test to show a bug in the
  720. current exception handling implementation.
  721. 2001-11-13 Dick Porter <[email protected]>
  722. * configure.in: Some more tests for pthread features
  723. (specifically, glibc 2.1 doesnt define pthread_mutex_timedlock but
  724. still needs _GNU_SOURCE for PTHREAD_MUTEX_RECURSIVE)
  725. 2001-11-09 Dick Porter <[email protected]>
  726. * configure.in: Try and get large file support, but it's not fatal
  727. if it's not there (the io-layer just ignores the high word in that
  728. case.)
  729. Check for windows builds, and only bother to look for pthreads and
  730. large files if we're not building for cygwin or native win32. Not
  731. having pthread support on Posix systems is now a fatal error.
  732. * autogen.sh: Fix ACLOCAL_FLAGS - it wasn't being passed to
  733. aclocal
  734. 2001-10-15 Dietmar Maurer <[email protected]>
  735. * mono/tests/Makefile.am: removed JITTESTS, simply run all tests for
  736. target testjit.
  737. 2001-10-11 Dietmar Maurer <[email protected]>
  738. * docs/object-layout: more documentation
  739. Mon Oct 8 20:27:50 CEST 2001 Paolo Molaro <[email protected]>
  740. * configure.in: define NO_UNALIGNED_ACCESS for platforms that
  741. can't read on unaligned boundaries
  742. 2001-10-04 Dick Porter <[email protected]>
  743. * configure.in: Do some deeper checks on pthreads for some of the
  744. more interesting functions
  745. 2001-09-24 Dietmar Maurer <[email protected]>
  746. * mono/tests/Makefile.am (testjit): a new target to test the JITer
  747. * mono/tests/jit-*: added some test for the JITer
  748. 2001-09-23 Dick Porter <[email protected]>
  749. * configure.in: Arrange to compile dummy thread support routines
  750. if pthread isnt available
  751. 2001-09-23 Dick Porter <[email protected]>
  752. * configure.in: Check for pthread.h, so that we can check for the
  753. HAVE_PTHREAD_H define in config.h
  754. 2001-09-21 Dick Porter <[email protected]>
  755. * configure.in: Check for libpthread
  756. 2001-09-19 Dietmar Maurer <[email protected]>
  757. * mono/tests/test-ops.cs: added more tests
  758. Mon Sep 10 20:19:00 CEST 2001 Paolo Molaro <[email protected]>
  759. * configure.in: check for sizeof(void*) and for the architecture.
  760. 2001-09-05 Dick Porter <[email protected]>
  761. * autogen.sh: Fixed the section that adds $ACLOCAL_FLAGS to the
  762. aclocal invocation, so putting aclocal files in /usr/local works
  763. 2001-08-30 Dietmar Maurer <[email protected]>
  764. * *: removed the libffi dependency, mono now compiles on cygwin
  765. * mono/wrapper/build-dll: new file.
  766. 2001-08-28 Dietmar Maurer <[email protected]>
  767. * mono/tests/console.cs: impl.
  768. * mono/tests/box.cs: impl.
  769. * mono/tests/stream-writer.cs: impl.
  770. Mon Aug 27 20:24:26 CEST 2001 Paolo Molaro <[email protected]>
  771. * mono/tests/*: New test cases, mostly for virtual method dispatch.
  772. Use make testb for the slow benchmarking programs,
  773. make test for the usual regression test checks.
  774. 2001-08-22 Rodrigo Moya <[email protected]>
  775. * mono/cil/Makefile.am:
  776. * mono/wrapper/Makefile.am: use correct variables for installation
  777. directories
  778. Tue Aug 21 18:54:06 CEST 2001 Paolo Molaro <[email protected]>
  779. * mono/tests/exceptions*: enhanced and added more tests for
  780. exceptions.
  781. 2001-08-20 Miguel de Icaza <[email protected]>
  782. * mono/Makefile.am (SUBDIRS): Remove `test' from here to allow us
  783. to pass make distcheck
  784. * mono/wrapper/Makefile.am (EXTRA_DIST): Include genwrapper.pl
  785. * configure.in, Makefile.am, runtime/Makefile.am (dist-hook,
  786. install-data-hook): Added mechanism to distribute and install the
  787. dll files.
  788. 2001-08-20 Dietmar Maurer <[email protected]>
  789. * mono/tests/stream.cs: new tests for the Stream class
  790. * configure.in: I really need LIBTOOL for libmonowrapper.so, so I
  791. added it again.
  792. 2001-08-16 Alex Graveley <[email protected]>
  793. * configure.in: Replace AM_PROG_LIBTOOL with AC_PROG_RANLIB. This
  794. removes libtool dependency on all of Mono.
  795. 2001-08-10 Dietmar Maurer <[email protected]>
  796. * mono/tests/array.cs: more array tests
  797. 2001-08-09 Dietmar Maurer <[email protected]>
  798. * mono/tests/array.cs: more array tests
  799. 2001-08-06 Dietmar Maurer <[email protected]>
  800. * mono/tests/pinvoke.cs: we can now print strings ;-)
  801. * mono/tests/array.cs: new test for arrays
  802. 2001-08-02 Alex Graveley <[email protected]>
  803. * libffi/*: Import libffi CVS version, with minor changes to make it
  804. compile.
  805. * mono/interpreter/Makefile.am: Link against
  806. ../../libffi/.libs/libffi.a.
  807. * Makefile.am: Add libffi
  808. * autogen.sh: Replace with adapted gnome autogen.sh
  809. * configure.in: Add AC_CONFIG_SUBDIRS(libffi).
  810. 2001-08-02 Dietmar Maurer <[email protected]>
  811. * mono/tests/pinvoke.cs: impl.
  812. Wed Aug 1 22:34:52 CEST 2001 Paolo Molaro <[email protected]>
  813. * configure.in, mono/tests: added some tests for the interpreter.
  814. 2001-07-15 Sean MacIsaac <[email protected]>
  815. * doc/download: added instructions for cygwin
  816. * doc/c-sharp: removed bit about compiling
  817. * status/compare-assembly.cs: basedir should be there if
  818. parameters are provided.
  819. * status/makefile: made targets to dump info.
  820. 2001-07-15 Joe Shaw <[email protected]>
  821. * configure.in: Don't create doc/Makefile as there's nothing there
  822. to make.
  823. * Makefile.am: Don't build the doc directory because there's no
  824. Makefile.am there.
  825. * autogen.sh: Call aclocal with the $ACLOCAL_FLAGS env var.
  826. 2001-07-15 Miguel de Icaza <[email protected]>
  827. * doc/class-library (A): Updated FAQ with question on error 1595.
  828. 2001-07-14 Miguel de Icaza <[email protected]>
  829. * doc/index:
  830. Wed Jul 11 00:36:36 CEST 2001 Paolo Molaro <[email protected]>
  831. * status/*: scripts and data to create statistics about the
  832. class library status.
  833. 2001-07-09 Alex Graveley <[email protected]>
  834. * doc/makefile (clean): Add clean target.
  835. * doc/web/makefile (clean): Ditto.
  836. 2001-07-09 Alex Graveley <[email protected]>
  837. * doc/makefile (all-docs): Fix typo.
  838. 2001-05-30 Miguel de Icaza <[email protected]>
  839. * NEWS: