ChangeLog 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361
  1. 2004-11-08 Jonathan Pryor <[email protected]>
  2. * configure.in: Add new function/header/type checks for use by
  3. MonoPosixHelper (the support directory).
  4. * support/Makefile.am: Add sys-sendfile.c to the build.
  5. * support/dirent.c, support/fcntl.c, support/unistd.c: Remove compile-time
  6. checks for -64 apis (pread64, etc.), as they're superfluous. GLibc
  7. #defines the functions to the appropriate -64 counterpart when necessary,
  8. and Darwin is intrinsically large-file-aware, so manual checking on my
  9. part is redundant and unnecessary.
  10. * support/grp.c: Add checks for non-portable functions getgrnam_r,
  11. getgrgid_r.
  12. * support/pwd.c: Add checks for non-portable functions getpwnam_r,
  13. getpwuid_r.
  14. * support/map.c: Remove <poll.h> include. Building on Tigar (Mac OS X 10.4
  15. beta) breaks when both <poll.h> and <sys/poll.h> are included, so only use
  16. <sys/poll.h>.
  17. * support/mph.h: Clean up macro handling for type overflow checking.
  18. 2004-11-08 Raja R Harinath <[email protected]>
  19. * configure.in (mcs_topdir, mcs_topdir_from_srcdir): New 'subst'ed
  20. variables. Used to support both an in-tree mcs/ and a sibling
  21. mcs/ directory.
  22. * Makefile.am (mcs_topdir): Remove.
  23. (dist-hook): Distribute mcs/ as a subdirectory.
  24. * runtime/Makefile.am ($(monoone_DATA) $(monotwo_DATA) $(monobins_DATA)):
  25. Use mcs_topdir and mcs_topdir_from_srcdir.
  26. * runtime/net_1_1/Makefile.am (mscorlib.dll $(gac_assemblies) $(mdb_files)):
  27. Likewise.
  28. (all-local): Depend on $(mdb_files) too.
  29. * runtime/net_2_0/Makefile.am: Likewise.
  30. 2004-11-05 Zoltan Varga <[email protected]>
  31. * runtime/net_2_0/Makefile.am (install-data-local):
  32. * runtime/net_1_1/Makefile.am (install-data-local): Applied patch
  33. from Götz Waschk ([email protected]). Make this work
  34. with DESTDIR.
  35. 2004-11-05 Jonathan Pryor <[email protected]>
  36. * support/.cvsignore: Ignore generated files.
  37. * support/Makefile.am: Add new INCLUDE directives (for glib headers),
  38. source; bump library version (so we don't clobber previous versions of
  39. libMonoPosixHelper.so).
  40. * support/dirent.c: New file; <dirent.h> wrapper functions;
  41. BSD portability fixes.
  42. * support/errno.c: New file; <errno.h> wrapper functions
  43. * support/fcntl.c: New file; <fcntl.h> wrapper functions;
  44. BSD portability fixes.
  45. * support/grp.c: New file; <grp.h> wrapper functions;
  46. BSD portability fixes.
  47. * support/map.c: Updated macro mapping functions (more enums mapped, more
  48. error checking, etc.).
  49. * support/map.h: Updated macro mapping functions
  50. * support/old-map.c: Previous map.c implementation, for backward compatibility
  51. Remove spurious warning about redefining _GNU_SOURCE.
  52. * support/old-map.h: Previous map.h implementation, for backward compatibility
  53. * support/mph.h: New file; Utility types, macros;
  54. BSD portability fixes.
  55. * support/pwd.c: New file; <pwd.h> wrapper functions;
  56. BSD portability fixes.
  57. * support/stdio.c: New file; <stdio.h> wrapper functions
  58. * support/stdlib.c: New file; <stdlib.h> wrapper functions
  59. * support/sys-mman.c: New file; <sys/mman.h> wrapper functions
  60. * support/sys-mount.c: New file; <sys/mount.h> wrapper functions;
  61. BSD portability fixes.
  62. * support/sys-sendfile.c: New file; <sys/sendfile.h> wrapper functions;
  63. BSD portability fixes.
  64. * support/sys-stat.c: New file; <sys/stat.h> wrapper functions
  65. * support/sys-wait.c: New file; <sys/wait.h> wrapper functions
  66. * support/time.c: New file; <time.h> wrapper functions;
  67. BSD portability fixes.
  68. * support/unistd.c: New file; <unistd.h> wrapper functions;
  69. BSD portability fixes.
  70. 2004-10-31 Zoltan Varga <[email protected]>
  71. * configure.in: Fix up --with-jit=no so it actually works. Fixes
  72. #61320.
  73. 2004-10-29 Gonzalo Paniagua Javier <[email protected]>
  74. * man/mono.1: documented MONO_THREADS_PER_CPU.
  75. 2004-10-29 Zoltan Varga <[email protected]>
  76. * configure.in: Add INCLUDED_LIBGC automake conditional.
  77. 2004-10-24 Jonathan Pryor <[email protected]>
  78. * man/mono.1: Add documentation for the MONO_TRACE environment variable.
  79. 2004-10-14 Joe Shaw <[email protected]>
  80. * man/mono.1: Fix the syntax of the M: trace syntax
  81. 2004-10-10 Zoltan Varga <[email protected]>
  82. * configure.in: Add some checks for cygwin weirdness.
  83. 2004-10-08 Zoltan Varga <[email protected]>
  84. * support/Makefile.am (libMonoPosixHelper_la_SOURCES): Do not build
  85. zlib_macros if zlib.h is not found.
  86. * configure.in: Add check for zlib.h.
  87. 2004-09-28 Neale Ferguson <[email protected]>
  88. * mini-s390.c: Fix AND_IMM/OR_IMM/DIV_IMM/REM_IMM
  89. 2004-09-28 Raja R Harinath <[email protected]>
  90. * Makefile.am ($(tmpinst)/bin/pedump): New.
  91. (mcs-do-run-test-profiles): Depend on it.
  92. 2004-09-27 Raja R Harinath <[email protected]>
  93. * Makefile.am (mono-do-testjit): New target, unused for now. Runs
  94. the mono testsuite in tests/.
  95. (tmpinst-dir): Create etc/mono/2.0.
  96. ($(tmpinst)/bin/ilasm, $(tmpinst)/etc/mono/2.0/machine.config): New.
  97. 2004-09-21 Neale Ferguson <[email protected]>
  98. * configure.in: Cater for S/390 on Linux
  99. 2004-09-21 <[email protected]>
  100. * configure.in: Link with ole32 on windows.
  101. 2004-09-20 Jackson Harper <[email protected]>
  102. * support/map.c/h: Add poll events map functions. Use values
  103. instead of names for defines.
  104. 2004-09-17 Martin Baulig <[email protected]>
  105. * Makefile.am (mcs-do-compiler-tests): Reverted Raja's latest
  106. change in this target.
  107. 2004-09-14 Raja R Harinath <[email protected]>
  108. * Makefile.am (mcs-do-full-build): Pass NO_SIGN_ASSEMBLIES=yes to
  109. reduce the number of passes. We will get the assemblies signed in
  110. the 'populate-runtime-subdir' phase.
  111. (mcs-do-run-test-profiles): Rename from mcs-do-run-tests. Use
  112. 'test-profiles' to test all profiles.
  113. (mcs-do-compiler-tests): Use 'compiler-tests' target in mcs/.
  114. (bootstrap-check): Update.
  115. * runtime/Makefile.am ($(monoone_DATA) $(monotwo_DATA) $(monobins_DATA)):
  116. Simplify.
  117. 2004-09-10 Zoltan Varga <[email protected]>
  118. * Makefile.am (populate-runtime-subdir): Avoid -path argument to find
  119. since it is not supported on solaris.
  120. 2004-09-03 Martin Baulig <[email protected]>
  121. * Makefile.am (bootstrap-world): New target.
  122. 2004-09-02 Martin Baulig <[email protected]>
  123. * runtime/net_1_1/Makefile.am (install-data-local): Install
  124. mscorlib.dll.mdb into $(corlibdir).
  125. * runtime/net_2_0/Makefile.am: Likewise.
  126. 2004-08-30 Zoltan Varga <[email protected]>
  127. * scripts/mcs.in: Remove obsolete comment.
  128. 2004-08-27 Lluis Sanchez Gual <[email protected]>
  129. * data/net_1_1/DefaultWsdlHelpGenerator.aspx: Little fix.
  130. * data/net_2_0/DefaultWsdlHelpGenerator.aspx: Added information about
  131. basic profile compliance.
  132. * data/net_2_0/machine.config: Use 2.0 assembly versions.
  133. 2004-08-26 Raja R Harinath <[email protected]>
  134. * Makefile.am (mcs-do-run-test): Depend on '$(tmpinst)/bin/mbas'.
  135. ($(tmpinst)/bin/mbas): Create temporary wrapper file, so that the
  136. testcases pick the built 'mbas.exe'.
  137. 2004-08-17 Zoltan Varga <[email protected]>
  138. * mono/os/gc_wrapper.h: Only use thread local alloc if using the included libgc, since the
  139. stock one has broken headers.
  140. * configure.in (PLATFORM_WIN32): Make the included libgc the default on windows.
  141. 2004-08-17 Dick Porter <[email protected]>
  142. * configure.in: Correct intl library for FreeBSD and OpenBSD.
  143. Fixes bug 62884, patch by Tom McLaughlin ([email protected]).
  144. 2004-08-16 Zoltan Varga <[email protected]>
  145. * configure.in: Set new automake variable LIBGC_STATIC_LIBS.
  146. 2004-08-14 Zoltan Varga <[email protected]>
  147. * configure.in (HAVE_KW_THREAD): Pass USE_COMPILER_TLS to libgc if
  148. __thread works.
  149. 2004-08-11 Zoltan Varga <[email protected]>
  150. * configure.in: Fix __thread test.
  151. 2004-08-07 Zoltan Varga <[email protected]>
  152. * configure.in: Add proper checks for the 'undefined reference to '__tls_get_addr' problem.
  153. 2004-08-06 Geoff Norton <[email protected]>
  154. * configure.in: Add a kqueue check
  155. 2004-08-03 Neale Ferguson <[email protected]>
  156. * configure.in: Enable S/390 64-bit JIT.
  157. 2004-07-31 Zoltan Varga <[email protected]>
  158. * configure.in: Enable AMD64 JIT.
  159. 2004-07-30 Martin Baulig <[email protected]>
  160. * Makefile.am: The symbol writer is now called
  161. Mono.CompilerServices.SymbolWriter.dll.
  162. 2004-07-30 Raja R Harinath <[email protected]>
  163. * runtime/Makefile.am (monoone_DATA): Add mcs.exe.config.
  164. (gmcs_exe): Add gmcs.exe.config.
  165. ($(monoone_DATA) $(monotwo_DATA) ...): Add location of the .config
  166. files too.
  167. 2004-07-29 Lluis Sanchez Gual <[email protected]>
  168. * Makefile.am: Copy machine.config in the correct _tmpinst subdirectory.
  169. 2004-07-28 Lluis Sanchez Gual <[email protected]>
  170. * configure.in: Added data/net_1_1 and data/net_2_0 to the build.
  171. * data/Makefile.am: Removed installation of machine.config and
  172. DefaultWsdlHelpGenerator.aspx. Those now are in a version-specific
  173. directory.
  174. * data/net_1_1/Makefile.am, data/net_2_0/Makefile.am: new makefiles for
  175. installing 1.1 and 2.0 makefiles.
  176. * runtime/net_1_1/Makefile.am, runtime/net_2_0/Makefile.am: Install mscorlib
  177. at the correct version specific directory.
  178. 2004-07-27 John Merryweather Cooper <[email protected]>
  179. * configure.in: Disable __thread test (TLS) for FreeBSD as
  180. it succeeds on FreeBSD 5.x when it should fail. Fix pthread
  181. library detection for FreeBSD 4.x since pthread is embedded
  182. in libc_r on this platform. Fix some typos in my host
  183. regexes for freebsd.
  184. 2004-07-23 Dick Porter <[email protected]>
  185. * configure.in: Changes for FreeBSD thread support by John
  186. Merryweather Cooper <[email protected]>.
  187. 2004-07-15 Jackson Harper <[email protected]>
  188. * man/gacutil.1: MONO_GAC_PREFIX not MONO_GAC_PATH
  189. 2004-07-12 Massimiliano Mantione <[email protected]>
  190. * docs/abc-removal.txt: Updated documentation for ABC removal.
  191. 2004-07-12 Massimiliano Mantione <[email protected]>
  192. * mono/mini/abcremoval.c: Rewritten most of ABC removal.
  193. * mono/mini/abcremoval.h: Rewritten most of ABC removal.
  194. * mono/mini/build_relations_propagation_table.pl: Deleted (unneeded after the rewrite).
  195. * mono/mini/propagated_relations_table.def: Deleted (unneeded after the rewrite).
  196. 2004-07-03 Zoltan Varga <[email protected]>
  197. * configure.in: Add --with-tls option to replace the misnamed
  198. --with-nptl option.
  199. 2004-07-02 Raja R Harinath <[email protected]>
  200. * Makefile.am (mcs-do-basic-build, mcs-do-short-build):
  201. Pass NO_SIGN_ASSEMBLY=yes to sub-make.
  202. ($(tmpinst)/bin/mono) [PLATFORM_WIN32]: Make it work.
  203. 2004-07-02 Zoltan Varga <[email protected]>
  204. * man/mono.1: Added 'aot' to trace options.
  205. 2004-06-30 Zoltan Varga <[email protected]>
  206. * configure.in: Fix trunc check + add SPARC64 defines.
  207. 2004-06-29 Jackson Harper <[email protected]>
  208. * man/gacutil.1: Update man with new command line options.
  209. 2004-06-29 Raja R Harinath <[email protected]>
  210. Atsushi Enomoto <[email protected]>
  211. * runtime/net_1_1/Makefile.am (GAC_ROOT_DIR): Renamed from GAC_DIR.
  212. (GAC_DIR): New define that doesn't include $(DESTDIR).
  213. (install-data-local,uninstall-local): Use them. Use in-tree mono
  214. runtime, not the installed one.
  215. 2004-06-29 Raja R Harinath <[email protected]>
  216. * runtime/Makefile.am (gmcs_exe): New. Set only if not W32.
  217. (monotwo_DATA): Use it.
  218. From Atsushi Enomoto.
  219. 2004-06-24 Raja R Harinath <[email protected]>
  220. * runtime/net_2_0/Makefile.am (gac_assemblies_list): Put back
  221. ICSharpCode.SharpZipLib, not that it has a different version.
  222. 2004-06-24 Raja R Harinath <[email protected]>
  223. * Makefile.am (MCS_DIRS, MCS_FILES): Add back Mono.CSharp.Debugger.
  224. (tmpinst-dir-contents, $(tmpinst)/bin/mono.bat): Remove mono.bat
  225. in W32. Use 'mono' and 'mcs' in W32 too.
  226. (bootstrap) [PLATFORM_WIN32]: Back to single stage bootstrap.
  227. * runtime/net_2_0/Makefile.am (gac_assemblies_list): Don't mention
  228. nunit.*, IBM.Data.DB2, ICSharpCode.SharpZipLib.
  229. Fix for #60443, the GAC .DLL-Hell.
  230. 2004-06-22 Raja R Harinath <[email protected]>
  231. * Makefile.am (bootstrap) [PLATFORM_WIN32]: Make two-stage.
  232. 2004-06-18 Jackson Harper <[email protected]>
  233. * man/mono.1: Add MONO_LOG_LEVEL and MONO_LOG_MASK. Add
  234. instructions on setting multiple mask values.
  235. Fri Jun 18 19:39:09 CEST 2004 Paolo Molaro <[email protected]>
  236. * Makefile.am: process data before runtime, so the config file is
  237. installed and gacutil has a chance to work (finding symlink).
  238. 2004-06-18 Raja R Harinath <[email protected]>
  239. * runtime/Makefile.am ($(monoone_DATA) $(monotwo_DATA) $(monobins_DATA)):
  240. Test if files exist in the mcs/ tree before creating symlinks.
  241. Remove symlinks before creating them again.
  242. * runtime/net_1_1/Makefile.am (mscorlib.dll $(gac_assemblies)): Likewise.
  243. * runtime/net_2_0/Makefile.am (mscorlib.dll $(gac_assemblies)): Likewise.
  244. 2004-06-18 Raja R Harinath <[email protected]>
  245. * scripts/Makefile.am (REWRITE): New. Common rewriting 'sed' command.
  246. (bin_SCRIPTS): Unify all the script generating rules into one.
  247. 2004-06-16 Raja R Harinath <[email protected]>
  248. * Makefile.am (bootstrap) [PLATFORM_WIN32]: Open code. Don't
  249. build and populate net_2_0 profile.
  250. (populate-runtime-subdir): Make into subroutine that takes list of
  251. profiles to populate.
  252. (faststrap): Update.
  253. (MCS_DIRS, MCS_FILES, MONO_CSHARP_DEBUGGER_DIR, MONO_CSHARP_DEBUGGER_FILE):
  254. Avoid automake conditional/+= problems.
  255. (populate-runtime-subdir): Rewrite sanity check.
  256. 2004-06-16 Raja R Harinath <[email protected]>
  257. Include prototype completely-untested 'make bootstrap' support for W32.
  258. * Makefile.am (bootstrap): Define to fasterstrap for W32.
  259. (MCS_DIRS, MCS_FILES): Don't refer to Mono.CSharp.Debugger in W32.
  260. (tmpinst-dir): Change sub-make invoke to ...
  261. (tmpinst-dir-contents): ... this. Build 'mono.bat' in W32 instead
  262. of 'mono' and 'mcs'.
  263. ($(tmpinst)/bin/mono.bat): New.
  264. 2004-06-15 Dick Porter <[email protected]>
  265. * configure.in: Check for struct ip_mreqn and struct ip_mreq on
  266. windows too. Fixes bug 55040.
  267. Mon Jun 14 18:38:34 CEST 2004 Paolo Molaro <[email protected]>
  268. * configure.in: better explain that --with-nptl is not related to
  269. NPTL, but to __thread support. Set sigaltstack support to off by
  270. default.
  271. 2004-06-12 Raja R Harinath <[email protected]>
  272. * Makefile.am (populate-runtime-subdir): Add _tmpinst directory
  273. to the PATH.
  274. 2004-06-11 Jackson Harper <[email protected]>
  275. * runtime/net_2_0/Makefile.am:
  276. * runtime/net_1_1/Makefile.am: Remove signing patches
  277. 2004-06-11 Jackson Harper <[email protected]>
  278. * man/mono.1: Add documentation for MONO_GAC_PREFIX.
  279. * runtime/net_2_0/Makefile.am:
  280. * runtime/net_1_1/Makefile.am: Sign assemblies before
  281. installing. Do not sign ziplib, npgsql, or nunit assemblies. Sign mscorlib.
  282. 2004-06-11 Raja R Harinath <[email protected]>
  283. * Makefile.am (populate-runtime-subdir): New target. Does a
  284. controlled "make install" in the 'mcs/' directory to populate the
  285. 'runtime' directory.
  286. (fasterstrap): Use it.
  287. 2004-06-10 Raja R Harinath <[email protected]>
  288. * runtime/Makefile.am ($(monoone_DATA),$(monotwo_DATA),$(monobins_DATA)):
  289. Don't copy from prefix. Use $(LN_S) to point to the mcs/ tree.
  290. * runtime/net_1_1/Makefile.am (mscorlib.dll,$(gac_assemblies)):
  291. Use $(LN_S) to point to the mcs/ tree, rather than copying.
  292. * runtime/net_2_0/Makefile.am (mscorlib.dll,$(gac_assemblies)): Likewise.
  293. 2004-06-10 Raja R Harinath <[email protected]>
  294. Support the new assembly signing setup in mcs/.
  295. * Makefile.am (mcs-do-basic-build): Pass 'USE_BOOT_COMPILE' to sub-makes.
  296. ($(tmpinst)/etc/mono/machine.config): New target.
  297. (tmpinst-dir.stamp): Remove and rewrite into ...
  298. ($(tmpinst)/bin/mcs): ... this and ...
  299. ($(tmpinst)/bin/mono): ... this. Update to use the in-tree machine.config.
  300. (tmpinst-dir): Rewrite to invoke above $(tmpinst)/... targets directly.
  301. * configure.in (AC_PROG_LN_S): New check to define $(LN_S).
  302. Thu Jun 3 14:39:17 CEST 2004 Paolo Molaro <[email protected]>
  303. * configure.in: libc setting for NetBSD (patch from [email protected]).
  304. 2004-06-01 Raja R Harinath <[email protected]>
  305. * Makefile.am (bootstrap,faststrap,fasterstrap): Refactor.
  306. Fix 'faststrap' to be corlib-version-change-safe.
  307. (one-stage-strap,two-stage-strap,three-stage-strap): Remove.
  308. (monolite-bootstrap): Update.
  309. 2004-05-31 Gonzalo Paniagua Javier <[email protected]>
  310. * configure.in: fixlets for windows.
  311. 2004-05-29 Zoltan Varga <[email protected]>
  312. * configure.in: export CC instead of passing it to libgc/configure.
  313. 2004-05-28 Duncan Mak <[email protected]>
  314. * runtime/Makefile.am:
  315. * scripts/Makefile.am: Include mono-find-provides and
  316. mono-find-requires.
  317. * scripts/mono-find-provides.in:
  318. * scripts/mono-find-requires.in: New wrapper scripts.
  319. 2004-05-27 Zoltan Varga <[email protected]>
  320. * configure.in: Pass CC to libgc configure.
  321. 2004-05-27 Gert Driesen ([email protected])
  322. * monowiz.win32.nsi: normalized line-endings to unix (LF)
  323. 2004-05-27 Gert Driesen ([email protected])
  324. * monowiz.win32.nsi: do not include mono subdirectory in
  325. MonoConfigDir registry key, to match batch files
  326. 2004-05-26 Gonzalo Paniagua Javier <[email protected]>
  327. * data/DefaultWsdlHelpGenerator.aspx: fixed querystring attribute
  328. values. Now they are URlEncoded.
  329. * data/browscap.ini.gz: updated.
  330. 2004-05-26 Raja R Harinath <[email protected]>
  331. * Makefile.am (mcs-do-basic-build): No need to set MCS here.
  332. * runtime/net_1_1/Makefile.am (gac_assemblies_list): Update to
  333. reflect new names for nunit.util and nunit.framework. Add
  334. nunit.core.
  335. * runtime/net_2_0/Makefile.am (gac_assemblies_list): Likewise.
  336. 2004-05-25 Ben Maurer <[email protected]>
  337. * config.h.in: remove
  338. 2004-05-25 18:30 CET Patrik Torstensson <[email protected]>
  339. * configure.in: Check for trunc instead of truncl (HAVE_TRUNC)
  340. 2004-05-21 Gonzalo Paniagua Javier <[email protected]>
  341. * Makefile.am:
  342. * monowiz.win32.nsi: improved windows installer script.
  343. 2004-05-21 Raja R Harinath <[email protected]>
  344. * README: Update to include instructions for the various new
  345. bootstrap-like targets.
  346. 2004-05-20 Raja R Harinath <[email protected]>
  347. * Makefile.am (get-monolite-latest, monolite-bootstrap):
  348. New bootstrap targets to build from monolite.
  349. Based on idea from Jaroslaw Kowalski <[email protected]>.
  350. 2004-05-20 Raja R Harinath <[email protected]>
  351. * configure.in (AC_OUTPUT): Add tools/Makefile and
  352. tools/locale-builder/Makefile.
  353. * Makefile.am (SUBDIRS): Remove tools.
  354. (DIST_SUBDIRS): Add 'tools'.
  355. (bootstrap): Rewrite so that we get two new targets.
  356. (faststrap): New two-stage build.
  357. (fasterstrap): New one-stage build.
  358. 2004-05-19 Jackson Harper <[email protected]>
  359. * tools/
  360. * tools/Makefile.am: Add tools directory
  361. * tools/locale-builder: Add the locale-builder tool, this tool is
  362. not built by default as it is only needed by people that wish to
  363. moidify culture data.
  364. * Makefile.am: Add tools to build
  365. Wed May 19 13:22:19 EDT 2004 Paolo Molaro <[email protected]>
  366. * configure.in: make MacOSX default to use the included libgc.
  367. 2004-05-18 Zoltan Varga <[email protected]>
  368. * configure.in: Get rid of -DMONO_USE_EXC_TABLES.
  369. 2004-05-19 Raja R Harinath <[email protected]>
  370. * configure.in: Use proper autoconf idiom to pass additional
  371. arguments to libgc/configure.
  372. (PLATFORM_WIN32, NEED_LINK_UNLINK): Use three-argument AC_DEFINE.
  373. * acconfig.h: Update to reflect changes.
  374. 2004-05-17 Raja R Harinath <[email protected]>
  375. * Makefile.am (tmpinst-dir): Creates _tmpinst tree if
  376. necessary. Move body ...
  377. (tmpinst-dir.stamp): ... here.
  378. (stage3): Don't remove _tmpinst tree.
  379. (bootstrap-clean, bootstrap-check): New rules. They run the
  380. corresponding rules in the mcs/ tree.
  381. 2004-05-14 Raja R Harinath <[email protected]>
  382. * Makefile.am: Revert unlogged unexplained changes.
  383. (stage3): Make 'all-profiles' since the mono source tarball
  384. carries all the net_2_0 preview dlls.
  385. 2004-05-11 Jackson Harper <[email protected]>
  386. * runtime/net_1_1/Makefile.am:
  387. * runtime/net_2_0/Makefile.am: cscompmgd.dll is lowercase now.
  388. 2004-05-10 Raja R Harinath <[email protected]>
  389. * Makefile.am (tmpinst-dir): Always add $tmpinst/lib to MONO_PATH.
  390. Fix quoting of commands.
  391. 2004-05-08 Gonzalo Paniagua Javier <[email protected]>
  392. * monowiz.win32.nsi: some changes i made to build the 0.91 win32 setup
  393. file.
  394. 2004-05-07 Bernie Solomon <[email protected]>
  395. * man/mono.1: mention MONO_EGD_SOCKET
  396. 2004-05-07 Raja R Harinath <[email protected]>
  397. Goodbye 'fullbuild', hello 'bootstrap'.
  398. * Makefile.am (bootstrap): New target for building from CVS. New
  399. improved version of 'fullbuild' -- does not install any files.
  400. (fullbuild): Obsolete target. Bootstraps and installs tree.
  401. (mcs-tree-safe-build,xinstall-runtime,mcs-rest,remove-binaries):
  402. Removed.
  403. (stage1,stage1-mcs,stage1-mono,stage2,stage3)
  404. (tmpinst-dir,tmpinst-runtime): New targets used to implement a
  405. two-stage bootstrap.
  406. 2004-05-05 Gonzalo Paniagua Javier <[email protected]>
  407. * configure.in: scandir check is no longer needed.
  408. 2004-05-05 Bernie Solomon <[email protected]>
  409. * configure.in: set LIBC on HPUX
  410. 2004-05-05 Zoltan Varga <[email protected]>
  411. * configure.in: Detect JNI headers in GNU classpath sources as well.
  412. 2004-05-05 Raja R Harinath <[email protected]>
  413. * runtime/net_2_0/Makefile.am (install-data-local, uninstall-local):
  414. Only disable this if INSTALL_2_0 is disabled.
  415. 2004-05-05 Gonzalo Paniagua Javier <[email protected]>
  416. * data/DefaultWsdlHelpGenerator.aspx: add any cookie in the request to
  417. the request we do for the actual web service.
  418. 2004-05-04 Gonzalo Paniagua Javier <[email protected]>
  419. * configure.in: check for SIGEV_THREAD being defined before checking
  420. for AIO support. Fixes compilation under FreeBSD.
  421. 2004-05-04 Raja R Harinath <[email protected]>
  422. * runtime/net_1_1/Makefile.am (mono_runtime): Use USE_JIT, not
  423. JIT_SUPPORTED.
  424. (install-data-local, uninstall-data-local): Run runtime with
  425. libtool.
  426. * runtime/net_2_0/Makefile.am: Likewise.
  427. Report from Urs C Muff <[email protected]>.
  428. 2004-05-03 Jackson Harper <[email protected]>
  429. * man/gacutil.1: Basic man page for gacutil. This doesn't include
  430. the new non-standard options yet.
  431. 2004-05-03 Gonzalo Paniagua Javier <[email protected]>
  432. * data/machine.config: added version and publickeytoken.
  433. 2004-05-01 Duncan Mak <[email protected]>
  434. * runtime/net_1_1/Makefile.am:
  435. * runtime/net_2_0/Makefile.am (gac_assemblies_list): Add NUnit
  436. dlls here.
  437. (non_gac_assemblies): Removed, every thing is migrated over to gac_assemblies.
  438. (EXTRA_DIST): Include only gac_assemblies.
  439. (dist_assemblies_DATA): It's referring to $(non_gac_assemblies)
  440. and that is no gone now. So remove as well.
  441. ($(non_gac_assemblies)): Bye bye.
  442. 2004-05-01 Duncan Mak <[email protected]>
  443. * runtime/net_1_1/Makefile.am (gac_assemblies_list): Add
  444. System.Web.Services. Someone accidentally took the line out.
  445. 2004-04-30 Jackson Harper <[email protected]>
  446. * runtime/net_1_1/Makefile.am:
  447. * runtime/net_2_0/Makefile.am: These assemblies are signed now.
  448. 2004-04-30 Raja R Harinath <[email protected]>
  449. * runtime/net_1_1/Makefile.am (gac_assemblies_list): Remove .dll
  450. suffix.
  451. (gac_assemblies, non_gac_assemblies, corlibdir, dist_corlib_DATA):
  452. New variables. Use Automake idioms.
  453. (dist-hook): Remove.
  454. (install-local, uninstall-local): Use mscorlib.dll from current
  455. tree when running gacutil.
  456. (mono_runtime): New variable. Points to either JIT compiler or
  457. interpreter.
  458. Report from Bernie Solomon <[email protected]>
  459. * runtime/net_2_0/Makefile.am: Likewise.
  460. * runtime/Makefile.am (dist_monobins_DATA): Rename from
  461. monobins_DATA.
  462. (EXTRA_DIST): Remove.
  463. * Makefile.am (fullbuild): Update to changes.
  464. 2004-04-30 Jackson Harper <[email protected]>
  465. * runtime/net_2_0/Makefile.am:
  466. * runtime/net_1_1/Makefile.am: /lib/mono/gac. Dont forget the mono.
  467. 2004-04-30 Duncan Mak <[email protected]>
  468. * runtime/Makefile.am ($(monobins_DATA)): Add sn.exe and sn.
  469. 2004-04-29 Duncan Mak <[email protected]>
  470. * scripts/gmcs.in: New file.
  471. * scripts/Makefile.am (EXTRA_DIST, bin_SCRIPTS, CLEANFILES): Add
  472. gmcs script.
  473. 2004-04-29 Jackson Harper <[email protected]>
  474. * runtime/net_2_0/Makefile.am: install 2.0 corlib to its own
  475. special little place.
  476. 2004-04-29 Zoltan Varga <[email protected]>
  477. * acconfig.h configure.in: Add check for scandir.
  478. 2004-04-29 Raja R Harinath <[email protected]>
  479. * runtime/Makefile.am (monobins_DATA): Add gacutil.exe.
  480. (SUBDIRS): Build here before building subdirs.
  481. * runtime/net_1_1/Makefile.am (all-local): Copy
  482. $(gac_assemblies_list) here.
  483. (install-data-local): Install dll from $(srcdir).
  484. (gacutil): Pick from current tree.
  485. * runtime/net_2_0/Makefile.am: Likewise.
  486. * Makefile.am (fullbuild): Update to changes in tree layout.
  487. * runtime/net_1_1/Makefile.am (install-data-local): Allow empty
  488. $(gac_assemblies_list).
  489. ($(gac_assemblies_list)): Pick libraries from 'class/lib/default',
  490. not 'class/lib/net_1_1'.
  491. 2004-04-28 Jackson Harper <[email protected]>
  492. * runtime/net_1_1/Makefile.am: Grab libs from proper directory, do
  493. not assume gacutil is installed.
  494. * runtime/net_2_0/Makefile.am: Do not assume gacutil is installed.
  495. 2004-04-28 Jackson Harper <[email protected]>
  496. * configure.in: Add new Makefile.amS
  497. * runtime/Makefile.am: libs are now in profile dependant
  498. directories.
  499. * runtime/net_1_1/Makefile.am: Install and Uninstall the .net 1.1
  500. libs to the GAC.
  501. * runtime/net_2_0/Makefile.am: Install and Uninstall the .net 2.0
  502. libs to the GAC.
  503. * data/Makefile.am: cleanup browscap.ini
  504. 2004-04-28 Bernie Solomon <[email protected]>
  505. * configure.in: reword message re EGD support
  506. now it is there
  507. 2004-04-28 Gonzalo Paniagua Javier <[email protected]>
  508. * config.h.in:
  509. * configure.in: added check for sys/aio.h. Also check the field name
  510. in 'union sigval'.
  511. 2004-04-28 Jackson Harper <[email protected]>
  512. * scripts/Makefile.am:
  513. * scripts/gacutil.in: Add a gacutil script
  514. 2004-04-26 Jackson Harper <[email protected]>
  515. * Makefile.am: Grab libraries from lib/default now.
  516. * runtime/Makefile.am: Grab libraries from lib/default now.
  517. 2004-04-26 Bernie Solomon <[email protected]>
  518. * configure.in: move setting of NO_VERSION_SCRIPT
  519. until after checking for GNU ld
  520. 2004-04-22 Urs C Muff <[email protected]>
  521. move .net assemblies from $prefix/bin/*.exe to $prefix/lib/*.exe on
  522. windows/cygwin refactor .nsi to simply maintenance on script/batch
  523. generation
  524. * runtime/Makefile.am
  525. * script/Makefile.am
  526. * monowiz.win32.nsi
  527. 2004-04-14 Raja R Harinath <[email protected]>
  528. * runtime/Makefile.am ($(assemblies_DATA)): Copy file into
  529. $(srcdir). Clean up output.
  530. ($(monobins_DATA)): Likewise.
  531. * Makefile.am (mcs-tree-safe-build): Fix typo.
  532. 2004-04-13 Sebastien Pouliot <[email protected]>
  533. * configure.in: Added rules to check for getgrgid_r, getgrnam_r,
  534. getpwnam_r, getpwuid_r, getresuid and setresuid.
  535. 2004-04-13 Raja R Harinath <[email protected]>
  536. Allow 'make fullbuild' to work on non-srcdir build.
  537. * Makefile.am (mcs_topdir): New variable.
  538. (mcs-tree-safe-build,mcs-rest,remove-binaries): Work in non-srcdir
  539. build.
  540. (xinstall-runtime): Likewise. Use $(libgc_dir) directly, don't
  541. grep for 'libgc'.
  542. (fullbuild): Make ordering dependencies explicit.
  543. 2004-04-12 Sachin Kumar <[email protected]>
  544. * Makefile.am: Added 'web' in SUBDIRS
  545. 2004-04-07 Gonzalo Paniagua Javier <[email protected]>
  546. * configure.in: don't try-run the tests for nptl and/or sigaltstack
  547. if they are disabled in the command line.
  548. 2004-04-05 Jackson Harper <[email protected]>
  549. * man/ilasm.1: Show /output instead of /out as the switch for
  550. specifying output file names.
  551. 2004-04-05 Zoltan Varga <[email protected]>
  552. * configure.in: Check for pthread_getattr_np and pthread_attr_get_np.
  553. 2004-04-02 Gonzalo Paniagua Javier <[email protected]>
  554. * config.h.in: added HAVE_GETPWUID_R
  555. * configure.in: check for getpwuid_r.
  556. 2004-03-23 Zoltan Varga <[email protected]>
  557. * configure.in: Fix GNU ld check.
  558. 2004-03-22 Zoltan Varga <[email protected]>
  559. * configure.in: Use amd64 instead of x86-64 as directory name. Fixes
  560. #55840.
  561. * configure.in: Disable -version-script if not using GNU ld. Fixes
  562. #55910.
  563. * configure.in: Speedup successful sigaltstack test.
  564. * configure.in: don't try-run the tests for nptl and/or sigaltstack
  565. if they are disabled in the command line.
  566. 2004-04-05 Jackson Harper <[email protected]>
  567. * man/ilasm.1: Show /output instead of /out as the switch for
  568. specifying output file names.
  569. 2004-04-05 Zoltan Varga <[email protected]>
  570. * configure.in: Check for pthread_getattr_np and pthread_attr_get_np.
  571. 2004-04-02 Gonzalo Paniagua Javier <[email protected]>
  572. * config.h.in: added HAVE_GETPWUID_R
  573. * configure.in: check for getpwuid_r.
  574. 2004-03-23 Zoltan Varga <[email protected]>
  575. * configure.in: Fix GNU ld check.
  576. 2004-03-22 Zoltan Varga <[email protected]>
  577. * configure.in: Use amd64 instead of x86-64 as directory name. Fixes
  578. #55840.
  579. * configure.in: Disable -version-script if not using GNU ld. Fixes
  580. #55910.
  581. * configure.in: Speedup successful sigaltstack test.
  582. 2004-03-21 Gonzalo Paniagua Javier <[email protected]>
  583. * configure.in: this test for sigaltstack works.
  584. 2004-03-20 Zoltan Varga <[email protected]>
  585. * configure.in: Disable sigaltstack test for now since it can hang.
  586. * configure.in: Add test for working sigaltstack.
  587. 2004-03-16 Duncan Mak <[email protected]>
  588. * runtime/Makefile.am
  589. (MakeCert.exe, cert2spc.exe, certmgr.exe, setreg.exe):
  590. Remember to install them to mono/runtime.
  591. 2004-03-14 Zoltan Varga <[email protected]>
  592. * configure.in: Enable JIT on sparc.
  593. 2004-03-13 Martin Willemoes Hansen <[email protected]>
  594. * data/config.in: Changed libgtkhtml-3.0.so.2 to libgtkhtml-3.0.so to fix
  595. breakage with gtkhtml-3.0.10
  596. 2004-03-10 Zoltan Varga <[email protected]>
  597. * configure.in acconfig.h: Add a --with-sigaltstack option for platforms
  598. where the sigaltstack based exception handling does not work.
  599. 2004-03-08 Zoltan Varga <[email protected]>
  600. * configure.in acconfig.h: Add check for aintl function, which is the
  601. solaris equivalent of truncl.
  602. 2004-02-29 Zoltan Varga <[email protected]>
  603. * configure.in: Add check for GC_enable.
  604. * configure.in: Remove amd64/Makefile from AC_OUTPUT to fix build.
  605. 2004-02-19 Zoltan Varga <[email protected]>
  606. * configure.in: Add proper support for --with-nptl for people who
  607. have linking problems when it is enabled.
  608. 2004-02-18 Zoltan Varga <[email protected]>
  609. * configure.in: Add test for __thread keyword and shared libs.
  610. 2004-02-16 Zoltan Varga <[email protected]>
  611. * configure.in: Enable --with-nptl by default.
  612. 2004-02-03 Zoltan Varga <[email protected]>
  613. * configure.in: Applied patch from Adrian Bunk ([email protected]). Fix
  614. message for failed gethostbyname2_r check.
  615. Fri Jan 23 16:07:05 EST 2004 Paolo Molaro <[email protected]>
  616. * configure.in, acconfig.h: check for truncl. Disable
  617. version script on MacOSX (see bug #51590 if a check becomes
  618. necessary).
  619. Fri Jan 23 21:26:01 CET 2004 Paolo Molaro <[email protected]>
  620. * configure.in, acconfig.h: added check for socklen_t.
  621. 2004-01-22 Zoltan Varga <[email protected]>
  622. * Makefile.am: Do not install mono.pc on platforms without a JIT.
  623. 2004-01-21 Zoltan Varga <[email protected]>
  624. * Makefile.am (remove-binaries): Get rid of non-portable >& construct.
  625. 2003-12-29 Miguel de Icaza <[email protected]>
  626. * scripts/sn.in: Add sn script.
  627. 2004-01-15 Zoltan Varga <[email protected]>
  628. * scripts/Makefile.am: Add al.exe.
  629. * scripts/al.in: New file.
  630. * runtime/Makefile.am: Add al.exe.
  631. 2004-01-10 Jackson Harper <[email protected]>
  632. * data/machine.config: Add trace handler (Trace.axd) add trace
  633. configuration handlers.
  634. 2004-01-06 Martin Willemoes Hansen <[email protected]>
  635. * doc/books: Added books on Web Services and ASP.NET
  636. 2004-01-04 Daniel Morgan <[email protected]>
  637. * monowiz.win32.nsi: update the NSIS installer script for windows
  638. to support NSIS 2.0 rc1 and Mono 0.29
  639. 2003-12-22 Bernie Solomon <[email protected]>
  640. * configure.in: missed in my last change
  641. * samples/embed/testi.c: interpreter embedding example
  642. * docs/embedded-api: add info on interpreter embedding
  643. Mon Dec 22 18:27:14 CET 2003 Paolo Molaro <[email protected]>
  644. * configure.in, acconfig.h: use mach semaphores on darwin.
  645. 2003-12-22 Bernie Solomon <[email protected]>
  646. * Makefile.am: Create mint.pc
  647. mint.pc.in: Added for embedding the interpreter
  648. 2003-12-16 Martin Baulig <[email protected]>
  649. * Makefile.am: In a Makefile.am, comments are started with `#' and
  650. not with `dnl' - I must have been an idiot ...
  651. 2003-12-10 Todd Berman <[email protected]>
  652. * configure.in: adding libicu url to the ICU: no message.
  653. 2003-12-05 John Luke <[email protected]>
  654. * data/config.in: new dll mapping entry for libgstreamer
  655. 2003-12-02 Atsushi Enomoto <[email protected]>
  656. * README: tiny fix ;-)
  657. 2003-11-26 Zoltan Varga <[email protected]>
  658. * configure.in: Add -fno-strict-aliasing to CFLAGS.
  659. * configure.in: Applied patch from [email protected]. Avoid linking in
  660. librt if not neccesary.
  661. 2003-11-24 Zoltan Varga <[email protected]>
  662. * configure.in: Fix signbit check. Fixes #51315.
  663. 2003-11-20 Jackson Harper <[email protected]>
  664. * data/machine.config: Add OutputCacheModule
  665. 2003-11-19 Jackson Harper <[email protected]>
  666. * doc/web/team.xml: New email address and job description
  667. * doc/web/team/jackson.png: Picture of me debugging...seems appropriate
  668. 2003-11-14 Jackson Harper <[email protected]>
  669. * Makefile.am: delete mscorlib.dll
  670. 2003-11-12 Jackson Harper <[email protected]>
  671. * Makefile.am: corlib is now named mscorlib.dll
  672. 2003-11-12 Zoltan Varga <[email protected]>
  673. * configure.in acconfig.h: Add check for signbit, which is missing in
  674. FreeBSD 4.x.
  675. 2003-11-07 Zoltan Varga <[email protected]>
  676. * configure.in: Remove debugging junk accidently checked in.
  677. * configure.in: Add new --with-nptl option to enable NPTL only
  678. features since auto-detection is not reliable.
  679. * autogen.sh: Fix previous patch and silence noisy GNU which.
  680. 2003-11-07 Bernie Solomon <[email protected]>
  681. * autogen.sh: tweak glibtool check so it works
  682. if which doesn't set return code properly
  683. 2003-11-07 Zoltan Varga <[email protected]>
  684. * autogen.sh: Silence noisy GNU which.
  685. * autogen.sh: Applied patch from Peter Teichman ([email protected]).
  686. Use 'glibtool' instead of 'libtool' on OSX.
  687. 2003-11-06 Zoltan Varga <zovarga@ws-zovarga2>
  688. * mono/benchmark/pinvoke.cs: New benchmark for testing the performance
  689. of the managed/unmanaged boundary.
  690. 2003-11-06 Zoltan Varga <[email protected]>
  691. * configure.in acconfig.h: Add check for __thread keyword in gcc.
  692. 2003-10-29 Dick Porter <[email protected]>
  693. * man/mono.1: Document MONO_EXTERNAL_ENCODINGS variable
  694. 2003-10-16 Miguel de Icaza <[email protected]>
  695. * man/mono.1: Document new --trace options
  696. 2003-10-13 Bernie Solomon <[email protected]>
  697. * configure.in: add hppa support (64bit only)
  698. make solaris build work with Forte compiler
  699. 2003-10-13 Zoltan Varga <[email protected]>
  700. * configure.in: Added check for pthread_attr_setstacksize.
  701. * mono/tests/ChangeLog: New file.
  702. 2003-10-13 Zoltan Varga <[email protected]>
  703. * mono/tests/Makefile.am: Link the tests with the test driver program
  704. used for the mini tests.
  705. 2003-10-10 Zoltan Varga <[email protected]>
  706. * mono/tests/libtest.c (mono_test_marshal_delegate): Added test for
  707. stdcall calling convention.
  708. 2003-10-09 Dick Porter <[email protected]>
  709. * acconfig.h:
  710. * configure.in: Check for ICU availability
  711. 2003-10-09 Bernie Solomon <[email protected]>
  712. * mono/tests/libtest.c: fix after merge of pinvoke2.cs
  713. 2003-10-07 Bernie Solomon <[email protected]>
  714. * mono/tests/Makefile.am mono/tests/libtest.c
  715. mono/tests/pinvoke18.cs: new test for bool marshalling.
  716. 2003-10-07 Bernie Solomon <[email protected]>
  717. * mono/scripts/Makefile.am mono/scripts/*.in: fix
  718. managed .exe paths so they are found under cygwin.
  719. 2003-10-07 Zoltan Varga <[email protected]>
  720. * mono/tests/pinvoke2.cs mono/tests/libtest.c: Fix array of structs
  721. test.
  722. 2003-10-06 Bernie Solomon <[email protected]>
  723. * mono/tests/pinvoke2.cs mono/tests/pinvoke11.cs
  724. mono/tests/libtest.c: Add more pass by value struct
  725. tests for platforms with more complex calling conventions
  726. (Sparc V9, HPPA 64 bit).
  727. 2003-10-06 Zoltan Varga <[email protected]>
  728. * mono/tests/pinvoke2.cs mono/tests/libtest.c: Add array of structs
  729. marshalling test.
  730. 2003-10-04 Bernie Solomon <[email protected]>
  731. * mono/tests/libtest.c: remove warnings except
  732. "no previous prototype"
  733. 2003-10-03 Bernie Solomon <[email protected]>
  734. * mono/tests/libtest.c: (test_lpwstr_marshal) remove undefined
  735. behaviour of increment, (mono_test_marshal_char) = should be ==
  736. 2003-09-30 Zoltan Varga <[email protected]>
  737. * mono/tests/remoting1.cs: Added test for interface casts on
  738. TransparentProxies.
  739. 2003-09-24 Bernie Solomon <[email protected]>
  740. * mono/tests/pinvoke*.cs, delegate4.cs, marshal10.cs, marshal4.cs
  741. marshal5.cs: remove .so from DllImport of libtest to aid portability.
  742. 2003-09-08 Zoltan Varga <[email protected]>
  743. * configure.in: Added check for valgrind headers.
  744. 2003-09-03 Zoltan Varga <[email protected]>
  745. * Makefile.am: Use $(MAKE) in even more places. Patch by Bernie Solomon
  746. ([email protected]).
  747. 2003-08-27 Zoltan Varga <[email protected]>
  748. * Makefile.am: Use $(MAKE) instead of make. Patch by Bernie Solomon
  749. ([email protected]).
  750. 2003-08-25 Zoltan Varga <[email protected]>
  751. * mono.pc.in: Added gthread-2.0.
  752. 2003-08-22 Zoltan Varga <[email protected]>
  753. * configure.in: Added gthread-2.0 to GLIB_CFLAGS and GLIB_LIBS, so we
  754. can call g_thread_init ().
  755. 2003-08-21 Zoltan Varga <[email protected]>
  756. * mono/tests/threadpool.cs mono/tests/threadpool1.cs: Make increments
  757. of static variables atomic. Fixes bug #47683.
  758. 2003-08-21 Johannes Roith <[email protected]>
  759. * mono/Makefile.am: small update. make sure, glib makes it in the build, add optional target for dependencies
  760. 2003-08-18 Johannes Roith <[email protected]>
  761. * mono/Makefile.am: add windows build option
  762. * mono/monowiz.win32.nsi: add windows build script
  763. * mono/mono-win32-light.bmp: add bitmap
  764. 2003-08-16 Zoltan Varga <[email protected]>
  765. * mono/tests/checked.cs: Added mul.ovf tests.
  766. 2003-08-15 Duncan Mak <[email protected]>
  767. * doc/mysql: Change references to ByteFX.Data.MySQLClient to the
  768. correct ByteFX.Data.MySqlClient (note the change in
  769. capitalization). Thanks to Tom Wagner <[email protected]> for
  770. spotting the error.
  771. 2003-08-15 Zoltan Varga <[email protected]>
  772. * mono/tests/bug-47295.cs: Regression test for bug #47295.
  773. 2003-08-11 Duncan Mak <[email protected]>
  774. * runtime/Makefile.am (assemblies_DATA): Add Mono.Cairo.dll.
  775. Sun Aug 3 21:12:13 BST 2003 Malte Hildingson <[email protected]>
  776. * configure.in: added FPU test for ARM.
  777. Thu Jul 31 16:19:07 CEST 2003 Paolo Molaro <[email protected]>
  778. * configure.in, etc.: portability fixes and support for
  779. buidling outside the srcdir from Laurent Morichetti <[email protected]>.
  780. 2003-07-22 Duncan Mak <[email protected]>
  781. * runtime/Makefile.am: Remove sqlsharp as we no longer distribute it.
  782. 2003-07-22 Zoltan Varga <[email protected]>
  783. * mono/tests/Makefile.am: Add missing test. Make tests interruptable
  784. by Ctrl-C. Add testinterp target to run the tests with the interpreter.
  785. Do not try to build vararg.cs under mcs.
  786. * configure.in: Fix detection of GC_gcj_malloc.
  787. 2003-07-14 Jerome Laban <[email protected]>
  788. * acconfig.h:
  789. * configure.in: Check for gethostbyname2_r availability.
  790. * data/machine.config: Added section system.net/settings. Added
  791. option for IPv6 availability.
  792. 2003-07-13 Zoltan Varga <[email protected]>
  793. * mono/tests/cattr-object.cs: Make it run under both mono and MS.NET.
  794. * mono/tests/struct.cs: Add test for unboxing trampolines.
  795. * mono/tests/bug-27420.cs: new regression test.
  796. * mono/tests/Makefile.am: skip vararg test since it does not compile
  797. under mono. Add testinterp target. Add new tests.
  798. 2003-07-10 Martin Willemoes Hansen
  799. * doc/web/team.xml : Modified my tasks a bit.
  800. 2003-07-01 Paolo Molaro <[email protected]>
  801. * acconfig.h, configure.in: added bundle support.
  802. 2003-06-10 Dick Porter <[email protected]>
  803. * acconfig.h:
  804. * configure.in: Check for struct ip_mreq if struct ip_mreqn isn't
  805. available.
  806. 2003-06-10 Zoltan Varga <[email protected]>
  807. * configure.in: Define HAVE_GC_GCJ_MALLOC for included libgc.
  808. 2003-06-10 Martin Baulig <[email protected]>
  809. * configure.in: Fall back to boehm if we don't have a libgc
  810. subdirectory.
  811. 2003-06-10 Martin Baulig <[email protected]>
  812. * configure.in: Make the libgc stuff actually work; we now create
  813. a shared libmonogc.so when using the included libgc.
  814. 2003-06-09 Martin Baulig <[email protected]>
  815. * configure.in: Only check for gc if --with-gc=boehm.
  816. 2003-06-08 Martin Baulig <[email protected]>
  817. * configure.in: Tell libgc's configure about our threads library.
  818. 2003-06-08 Martin Baulig <[email protected]>
  819. * libgc/: Integrate the libgc module here.
  820. [Note: A simple `cvs update' won't work this time; you either need
  821. to re-checkout the `mono' module or manually move the `libgc'
  822. module here.]
  823. * configure.in (--with-gc): Added `included' option to use the
  824. included libgc. This is now also the default.
  825. (LIBGC_CFLAGS, LIBGC_LIBS): Put the libgc stuff here and AC_SUBST it.
  826. (INCLUDED_LIBGC): New automake conditional.
  827. (USE_INCLUDED_LIBGC): #define this if appropriate.
  828. * autogen.sh: Run libgc/autogen.sh.
  829. * Makefile.am (SUBDIRS): Added libgc.
  830. 2003-06-05 Duncan Mak <[email protected]>
  831. * mono.spec.in (Requires): Add libxml2 and libxslt dependency on
  832. the package.
  833. 2003-05-19 Dick Porter <[email protected]>
  834. * configure.in: Netbsd build fix by [email protected].
  835. 2003-05-10 Martin Willemoes Hansen <[email protected]>
  836. * scripts/Makefile.am: Added monoresgen secutil sqlsharp
  837. shell wrapper scripts.
  838. 2003-05-08 Zoltan Varga <[email protected]>
  839. * mono/tests/Makefile.am:
  840. - Compile with mcs.
  841. - Disable some warnings.
  842. - Added executables to clean target.
  843. - Make testjit the default target.
  844. - Print list of failed tests at the end of a test run.
  845. - Abort tests when Ctrl-C is pressed.
  846. * mono/tests/test-driver: Return with a special exit code when
  847. SIGINT is detected.
  848. * mono/tests/checked.cs: Make it compile.
  849. 2003-05-02 Miguel de Icaza <[email protected]>
  850. * runtime/Makefile.am ($(monobins_DATA)): Use explicit file names
  851. for the target exe binaries.
  852. Copy cilc.exe and secutil.exe from the right paths to the right
  853. location.
  854. Add missing assemblies.
  855. 2003-05-02 Alp Toker <[email protected]>
  856. * data/config.in: new dll mapping entry for libglade
  857. 2003-05-01 Duncan Mak <[email protected]>
  858. * scripts/Makefile.am:
  859. * runtime/Makefile.am: Install cilc and ilasm.
  860. 2003-04-29 Dietmar Maurer <[email protected]>
  861. * mono/tests/Makefile.am (JITTEST_PROG): use mini/mono
  862. 2003-04-16 Charles Iliya Krempeaux <[email protected]>
  863. * doc/web/team.xml : Added myself to it.
  864. 2003-04-10 Duncan Mak <[email protected]>
  865. * doc/web/render-team-page.cs: Make the names of the element be
  866. lowercase instead. BenM says this makes it XHTML compliant; heck,
  867. I'm generating this from an XmlDocument already, why not make it
  868. XHTML compliant?
  869. 2003-04-10 Duncan Mak <[email protected]>
  870. * doc/web/render-team-page.cs (Compare): Correctly fix
  871. ContributorComparer.
  872. (RenderHtml): Add some SetAttribute loving to make it render prettier.
  873. * doc/web/team.xml: Revert excessive indenting.
  874. 2003-04-07 Martin Baulig <[email protected]>
  875. * mono/mini/: Added this directory to the build; install `mini'
  876. and `libmini.la'.
  877. 2003-04-07 Duncan Mak <[email protected]>
  878. * doc/web/render-team-page.cs: Fix ContributorComparer.
  879. 2003-04-04 Duncan Mak <[email protected]>
  880. * doc/web/render-team-page.cs: Make it use 'none.png' if no image
  881. are specified in the XML.
  882. * doc/web/team.xml: Remove the comment.
  883. * doc/web/render-team-page.cs: Make it not output a full HTML file.
  884. 2003-04-04 Duncan Mak <[email protected]>
  885. * doc/web/commands:
  886. * doc/web/makefile: Add team page information.
  887. * doc/web/team.xml:
  888. * doc/web/render-team-page.cs: Code for rendering a team page.
  889. 2003-04-02 Duncan Mak <[email protected]>
  890. * doc/web/makefile: Add a new make target for generating a team
  891. page on go-mono.com.
  892. 2003-04-04 Zoltan Varga <[email protected]>
  893. * configure.in: Added check for GC_gcj_malloc.
  894. 2003-04-04 Martin Willemoes Hansen <[email protected]>
  895. * man/sqlsharp.1: changed pass= to password= for the
  896. PostgreSql provider.
  897. 2003-03-31 Gonzalo Paniagua Javier <[email protected]>
  898. * data/machine.config: added SessionStateModule to httpModules section.
  899. 2003-02-13 Gonzalo Paniagua Javier <[email protected]>
  900. * data/machine.config: added default sessionState section and handler.
  901. 2003-02-17 Daniel Morgan <[email protected]>
  902. * doc/provider-factory: add new web page
  903. about Mono.Data's ProviderFactory
  904. * doc/web/commands
  905. * doc/web/makefile: add provider-factory web page to build
  906. * doc/ado-net
  907. * doc/ibmdb2
  908. * doc/postgresql
  909. * doc/sqlclient
  910. * doc/tdsclient
  911. * doc/sybase
  912. * doc/mysql
  913. * doc/firebird
  914. * doc/oracle
  915. * doc/oledb
  916. * doc/odbc
  917. * doc/sqlite: updated web pages
  918. 2003-02-16 Martin Baulig <[email protected]>
  919. * doc/jit-debug-sample
  920. * doc/jit-debug-sample2: Removed.
  921. * doc/jit-debug: Updated.
  922. 2003-02-13 Daniel Morgan <[email protected]>
  923. * doc/screenshots
  924. * doc/ado-net
  925. * doc/oracle
  926. * doc/gtk-sharp: update web pages
  927. 2003-02-13 Gonzalo Paniagua Javier <[email protected]>
  928. * data/machine.config: added sample globalization section.
  929. 2003-02-12 Gonzalo Paniagua Javier <[email protected]>
  930. * data/machine.config: added UrlAuthorizationModule and
  931. AuthenticationConfigHandler.
  932. 2003-02-11 Tim Coleman <[email protected]>
  933. * data/config.in: Add mapping for Oracle call interface
  934. (OCI) native libraries.
  935. 2003-02-04 Gonzalo Paniagua Javier <[email protected]>
  936. * configure.in: added check for sys/un.h.
  937. 2003-01-29 Daniel Morgan <[email protected]>
  938. * doc/postgresql
  939. * doc/mysql
  940. * doc/ado-net: updates to web pages
  941. * man/sqlsharp.1: update to man page
  942. 2003-01-28 Gonzalo Paniagua Javier <[email protected]>
  943. * configure.in: added WIN32_THREADS flag when building under windows.
  944. It seems that the header files of the gc do not always define it when
  945. GC_WIN32_THREADS is defined.
  946. 2003-01-26 Daniel Morgan <[email protected]>
  947. * doc/index
  948. * doc/ado-net
  949. * doc/firebird
  950. * doc/ibmdb2
  951. * doc/mysql
  952. * doc/odbc
  953. * doc/oledb
  954. * doc/oracle
  955. * doc/postgresql
  956. * doc/sqlclient
  957. * doc/sqlite
  958. * doc/sybase
  959. * doc/tdsclient: corrections
  960. 2003-01-26 Duncan Mak <[email protected]>
  961. * doc/jit-debug: Update the links. Thanks for Andy Oliver for the report.
  962. 2003-01-22 Martin Baulig <[email protected]>
  963. * configure.in: Set version number to 0.19.1.
  964. Heads up: I'm going to commit some changes to the debugger
  965. which'll require you to use this new runtime, so if you update the
  966. debugger from CVS, you also need this new runtime.
  967. 2003-01-20 Duncan Mak <[email protected]>
  968. * configure.in: Bump the release number to 0.19.
  969. 2003-01-19 Daniel Morgan <[email protected]>
  970. * doc/ibmdb2: added file which is new web page
  971. about IBM DB2 data provider at Mono.Data.DB2Client
  972. * makefile
  973. * commands: added ibmdb2 web page to go-mono web site
  974. * doc/ado-net: added a couple more developers email, plus made the
  975. email spam resistant, added Mono's DB2 data provider to list,
  976. added more info about the ProviderFactory and retrieving data using
  977. ADO.NET from ASP.NET, add notes about testing, misc cleanup
  978. * doc/mysql
  979. * doc/postgresql
  980. * doc/sqlclient
  981. * doc/oracle
  982. * doc/tdsclient
  983. * doc/firebird
  984. * doc/oledb
  985. * doc/odbc
  986. * doc/sybase
  987. * doc/sqlite: added testing notes and C# examples
  988. * doc/gtk-sharp: added links for GTK# for Windows
  989. * man/sqlsharp.1: added providers Npgsql and MySQLNet
  990. 2003-01-17 Duncan Mak <[email protected]>
  991. * runtime/Makefile.am: Add the new Mono.Data.DB2Client.dll.
  992. 2003-01-16 Martin Baulig <[email protected]>
  993. * configure.in (GTHREAD_LIBS, GTHREAD_CFLAGS): Removed the gthread
  994. check again, we're now using the mono/io-layer for this.
  995. Wed Jan 15 16:20:54 CET 2003 Paolo Molaro <[email protected]>
  996. * configure.in: allow MacOSX (from various people).
  997. 2003-01-14 Martin Baulig <[email protected]>
  998. * configure.in (GTHREAD_LIBS, GTHREAD_CFLAGS): Added check for gthread.
  999. 2002-12-27 Jeroen Janssen <[email protected]>
  1000. * fixed url for System.Windows.Forms in the class status
  1001. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  1002. * configure.in: moved struct tm field tm_gmtoff check before the check
  1003. for timezone global variable. This makes Timezone work for me (debian
  1004. sid, linux, x86, which has both the field and the global variables).
  1005. 2002-12-10 Daniel Morgan <[email protected]>
  1006. * doc/oracle: added file which is
  1007. a new web page oracle.html
  1008. * doc/ado-net: clean up and add link
  1009. to oracle.html
  1010. * doc/web/commands
  1011. * doc/web/makefile: added oracle.html
  1012. 2002-12-10 Daniel Morgan <[email protected]>
  1013. * man/Makefile.am: changed sqlsharpcli.1 to sqlsharp.1
  1014. * man/sqlsharpcli.1: renamed to sqlsharp.1
  1015. 2002-12-09 Tim Haynes <[email protected]>
  1016. * mono/jit/jit.c
  1017. * mono/metadata/icall.c: added mono_install_get_config_dir() to
  1018. utilize the MONO_CFG_DIR environment variable for specifying
  1019. different machine.configs.
  1020. 2002-12-06 Duncan Mak <[email protected]>
  1021. * data/Makefile.am (EXTRA_DIST): Add machine.config
  1022. (DISTCLEANFILES): Add config.
  1023. 2002-11-30 Daniel Morgan <[email protected]>
  1024. * man/sqlsharpcli.1: added file - a man page
  1025. for SQL# CLI
  1026. * man/Makefile.am: added sqlsharpcli.1 to man_MANS
  1027. 2002-11-20 Daniel Morgan <[email protected]>
  1028. * doc/firebird: updated web page
  1029. 2002-11-19 Mike Kestner <[email protected]>
  1030. * data/Config.in : added the gtk# dll mapping entries
  1031. 2002-11-19 Daniel Morgan <[email protected]>
  1032. * doc/firebird: updated web page based on input
  1033. from the firebird .net data provider author
  1034. Mon Nov 18 16:40:34 CET 2002 Paolo Molaro <[email protected]>
  1035. * configure.in, mono/os/gc_wrapper.h: check that the gc headers have
  1036. been installed.
  1037. 2002-11-12 Daniel Morgan <[email protected]>
  1038. * doc/oledb
  1039. * doc/odbc
  1040. * doc/mysql
  1041. * doc/sqlite
  1042. * doc/sqlclient
  1043. * doc/tdsclient
  1044. * doc/sybase
  1045. * doc/firebird: added web pages
  1046. for each specific data provider
  1047. * doc/ado-net
  1048. * doc/postgresql: updated web page
  1049. with current status
  1050. * doc/web/commands
  1051. * doc/web/makefile: updated to include
  1052. new web pages
  1053. 2002-11-06 Gonzalo Paniagua Javier <[email protected]>
  1054. * autogen.sh: make it work when MONO_PATH is set and it has more than
  1055. one directory or ends in ":". Also check that the directory added to
  1056. ACLOCAL_FLAGS and PATH exist (aclocal fails if they don't).
  1057. 2002-10-22 Miguel de Icaza <[email protected]>
  1058. * configure.in: Also allow the miss-spelled bohem.
  1059. 2002-10-18 Daniel Morgan <[email protected]>
  1060. * doc/ado-net
  1061. * doc/postgresql
  1062. * doc/tds-providers: cleaned up the web pages
  1063. * doc/web/commands: postgresql.html page was mistyped
  1064. 2002-10-18 Daniel Morgan <[email protected]>
  1065. * doc/ado-net: updated status of
  1066. the ADO.NET functionality and providers
  1067. and added link to tds-providers.html
  1068. * doc/tds-providers: added file to
  1069. describe the design and status of
  1070. the SqlClient, SybaseClient, and TdsClient
  1071. ADO.NET providers.
  1072. * doc/web/makefile
  1073. * doc/web/command: added new web page
  1074. tds-providers.html to build of www.go-mono.com web site
  1075. 2002-10-17 Daniel Morgan <[email protected]>
  1076. * doc/web/makefile
  1077. * doc/web/commands: web page
  1078. postgresql needed to be added
  1079. 2002-10-13 Mark Crichton <[email protected]>
  1080. * doc/index: Even more spelling errors fixed.
  1081. 2002-10-13 Daniel Morgan <[email protected]>
  1082. * doc/adonet: updated status of all providers, added links,
  1083. and added information
  1084. about the Mono.Data.SqliteClient provider that
  1085. Vladimir Vukicevic contributed. Added Brian Ritchie's
  1086. and Vladimir Vukicevic's email addresses as
  1087. people to contact about ADO.NET in Mono.
  1088. Added information about SQL#, configuration tools,
  1089. and an ADO.NET Multiplexor, etc...
  1090. 2002-10-10 Daniel Morgan <[email protected]>
  1091. * doc/index: corrected some mistypes
  1092. * doc/adonet: updated the status and plans of all the ADO.NET providers
  1093. and moved PostgreSQL specific stuff to doc/postgresql
  1094. * doc/postgresql: added new file to detail
  1095. the status of the PostgreSQL ADO.NET provider
  1096. and provide test notes for setting it up
  1097. 2002-10-09 Daniel Morgan <[email protected]>
  1098. * data/config.in: add entry for MySQL native shared libraries
  1099. which are different on Windows and Linux
  1100. 2002-10-04 Diego Sevilla Ruiz <[email protected]>
  1101. * doc/ccvs: Fixed some ugly formatting.
  1102. 2002-10-03 Dick Porter <[email protected]>
  1103. * acconfig.h:
  1104. * configure.in: Freebsd pthread_t is a pointer
  1105. 2002-10-01 Duncan Mak <[email protected]>
  1106. * mono/os/Makefile.am: Add gc_wrapper.h.
  1107. * runtime/Makefile.am: Fix the path for monoresgen.exe.
  1108. 2002-09-27 Dick Porter <[email protected]>
  1109. * configure.in: Check for semaphore.h. Patch for BSD from
  1110. [email protected] (Julio Merino).
  1111. 2002-09-20 Duncan Mak <[email protected]>
  1112. * data/config.in: Added reference to libxslt.
  1113. 2002-09-20 Mark Crichton <[email protected]>
  1114. * configure.in: added NEED_LINK_UNLINK to make io-layer more portable.
  1115. Linux has a "virtual fs" for UNIX sockets, Solaris and BSD don't.
  1116. For systems that do not have such a virtual FS, define
  1117. NEED_LINK_UNLINK.
  1118. * acconfig.h: added NEED_LINK_UNLINK
  1119. Wed Sep 4 18:09:58 CEST 2002 Paolo Molaro <[email protected]>
  1120. * configure.in: add some needed defines to fix support of
  1121. threads in the GC.
  1122. 2002-09-19 Mark Crichton <[email protected]>
  1123. * configure.in: Added checks for Solaris to use X/Open functionality.
  1124. Really needed for the io-layer code.
  1125. 2002-09-15 Andrew Birkett <[email protected]>
  1126. * man/mcs.1: --probe is now --expect-error.
  1127. 2002-09-09 Dick Porter <[email protected]>
  1128. * acconfig.h:
  1129. * configure.in: Simplify thread checks, by using canned rules for
  1130. particular systems (based on the sleepycat db configure.in).
  1131. Tested on linux/x86, freebsd and w32. Solaris also added, but I
  1132. don't have a solaris machine to try it on.
  1133. 2002-09-04 Juli Mallett <[email protected]>
  1134. * configure.in: Include <sys/types.h> when checking <sys/un.h> stuff.
  1135. 2002-09-02 Diego Sevilla Ruiz <[email protected]>
  1136. * doc/ccvs: Added how to convert SSH keys (from SSH Communications
  1137. Security) to the OpenSSH keys required by mono CVS
  1138. access.
  1139. 2002-09-01 Juli Mallett <[email protected]>
  1140. * configure.in, mono/interpreter/interp.c,
  1141. mono/io-layer/handles.c, mono/io-layer/processes.c,
  1142. mono/io-layer/threads.c, mono/io-layer/timed-thread.c,
  1143. mono/io-layer/wait.c, mono/jit/helpers.c, mono/jit/jit.c,
  1144. mono/metadata/appdomain.c, mono/metadata/class.c,
  1145. mono/metadata/domain.c, mono/metadata/gc.c,
  1146. mono/metadata/object.c, mono/metadata/reflection.c,
  1147. mono/metadata/threads.c, mono/os/gc_wrapper.h,
  1148. mono/utils/mono-hash.c: Add a new header, gc_wrapper.h, to
  1149. wrap inclusion of gc.h for boehm, since from FreeBSD and
  1150. OpenBSD ports, gc.h is <gc.h>, but on GNU it seems to be
  1151. in <gc/gc.h>. This will reduce the diffs FreeBSD ports has
  1152. to apply, and also makes it possible for me to build with
  1153. GC on OpenBSD/macppc built by hand.
  1154. 2002-09-01 Juli Mallett <[email protected]>
  1155. * configure.in: On BSD don't try to use -ldl, we simply don't use it.
  1156. 2002-09-01 Juli Mallett <[email protected]>
  1157. * mono/dis/dis-cil.c:
  1158. * configure.in: Check for <wchar.h> via autoconf, don't use it if
  1159. it isn't there, as it seems to work fine without it on OpenBSD.
  1160. 2002-08-28 Dick Porter <[email protected]>
  1161. * mono/os/win32/util.c:
  1162. * mono/os/unix/util.c:
  1163. * mono/os/util.h: mono_set_rootdir() doesnt take any args now.
  1164. (It doesn't do anything on unix builds, and the w32 version no
  1165. longer needs an arg.)
  1166. * configure.in: Add HOST_CC for w32 builds
  1167. Tue Aug 27 18:17:43 CEST 2002 Paolo Molaro <[email protected]>
  1168. * configure.in: remove iconv checks.
  1169. 2002-08-24 Juli Mallett <[email protected]>
  1170. * configure.in: Recognise OpenBSD/macppc as PowerPC.
  1171. Tue Aug 20 15:15:52 CEST 2002 Paolo Molaro <[email protected]>
  1172. * configure.in: patch by [email protected] (Daniel Resare)
  1173. to error out if bison is missing.
  1174. 2002-08-17 Gonzalo Paniagua Javier <[email protected]>
  1175. * configure.in: don't link against libdl on windoze.
  1176. 2002-08-12 Dick Porter <[email protected]>
  1177. * mono.pc.in: Add $includedir to Cflags
  1178. Fri Jul 19 18:38:38 CEST 2002 Paolo Molaro <[email protected]>
  1179. * configure.in, Makefile.am, mono.pc.in: add a mono.pc file for use
  1180. with pkg-config.
  1181. * */Makefile.am: makefile overhaul to create a shared libmono library.
  1182. * */*.h: do not include config.h in headers that should be installed.
  1183. 2002-07-12 Dick Porter <[email protected]>
  1184. * acconfig.h:
  1185. * configure.in: Check the size of sockaddr_un.sun_path
  1186. 2002-06-23 Miguel de Icaza <[email protected]>
  1187. * man/Makefile.am (man_MANS): Added new man page
  1188. * man/mono-config.5: New manual page describing the mono-config
  1189. file format.
  1190. 2002-06-10 Jaroslaw Kowalski <[email protected]>
  1191. * configure.in: added checks for MSG_NOSIGNAL
  1192. 2002-05-30 Daniel Morgan <[email protected]>
  1193. * doc/ado-net: update the ado-net web page on go-mono.com
  1194. input parameters support, beginnings of Mono.Data.MySQL
  1195. and System.Data.OleDb, updated the sample source code,
  1196. and output from a PostgresTest
  1197. 2002-05-21 Martin Baulig <[email protected]>
  1198. * mono.1: Documented the "--debug-args" debugging arguments.
  1199. 2002-05-21 Martin Baulig <[email protected]>
  1200. * mono.1: Updated to reflect my latest changes and beautified this a bit.
  1201. (FIXME: There are still command line argument which aren't documented here.)
  1202. 2002-05-19 Daniel Morgan <[email protected]>
  1203. * doc/ado-net: updated page to include C# code snippets using
  1204. System.Data. Update status: handle reading NULL values, DataSet/DataAdapter
  1205. works, executing/reading multiple results, and stored procedures.
  1206. And other tweaks about the providers.
  1207. 2002-05-19 Martin Baulig <[email protected]>
  1208. * mono/Makefile.am (SUBDIRS): Added `os', it's referenced by
  1209. interpreter/Makefile.am.
  1210. Wed May 15 12:22:09 CEST 2002 Paolo Molaro <[email protected]>
  1211. * configure.in: search for pthread functions also in libc_r (patch
  1212. from Garrett Rooney <[email protected]>).
  1213. 2002-05-11 Daniel Morgan <[email protected]>
  1214. * doc/ado-net: added instructions for installing PostgreSQL on Linux
  1215. and for using nant to re-compile just the System.Data.dll assembly
  1216. on Windows.
  1217. 2002-05-10 Rodrigo Moya <[email protected]>
  1218. * doc/ado-net: added instructions for compiling System.Data.dll
  1219. (a subset of) on Linux.
  1220. 2002-05-10 Daniel Morgan <[email protected]>
  1221. * doc/ado-net: added links
  1222. 2002-05-09 Dick Porter <[email protected]>
  1223. * configure.in: Set CPPFLAGS not CFLAGS (bug 23767)
  1224. 2002-05-05 Daniel Morgan <[email protected]>
  1225. * doc/ado-net: correct formatting
  1226. * doc/index: added credit i forgot to add
  1227. 2002-05-05 Daniel Morgan <[email protected]>
  1228. * doc/ado-net: i did not format it correctly earlier, i
  1229. tried added various tags where appropriate.
  1230. * doc/index: added news item for May 5, 2002 - ado.net able
  1231. to retrieve data now
  1232. 2002-05-05 Daniel Morgan <[email protected]>
  1233. * doc/ado-net: updated the current status which
  1234. I kept forgetting to do.
  1235. 2002-05-05 Daniel Morgan <[email protected]>
  1236. * doc/ado-net: updated to includes an example for
  1237. running ipc-daemon as a Windows service. Thanks
  1238. to gonzalo.
  1239. 2002-05-05 Daniel Morgan <[email protected]>
  1240. * doc/ado-net: updated to include installation of
  1241. PostgreSQL DBMS under cygwin. It is a TODO for Linux though.
  1242. Also included notes on running the System.Data/Test/PostgresTest.cs
  1243. that should work on a lot of Mono installations that have
  1244. PostgreSQL installed. If not please let me, rodrigo, or gonzalo
  1245. know.
  1246. 2002-05-01 Rodrigo Moya <[email protected]>
  1247. * doc/ado-net: updated a little bit.
  1248. 2002-04-30 Jeffrey Stedfast <[email protected]>
  1249. * configure.in: Added checks for timezone stuff.
  1250. 2002-04-30 Dick Porter <[email protected]>
  1251. * acconfig.h:
  1252. * configure.in: Added option to disable using shared memory for
  1253. handles
  1254. 2002-04-28 Gonzalo Paniagua Javier <[email protected]>
  1255. * configure.in: fix for conditional "THREADS_PTHREAD" was never
  1256. defined problem under cygwin with latest version of automake and
  1257. autoconf. Patch from Jeroen Janssen <[email protected]>.
  1258. 2002-04-23 Gonzalo Paniagua Javier <[email protected]>
  1259. * configure.in: removed -Wshadow from CFLAGS.
  1260. 2002-04-12 Rodrigo Moya <[email protected]>
  1261. * status/maintainers.xml: added danmorg and myself for System.Data.*
  1262. classes.
  1263. * status/class.xml: added System.Data.* classes.
  1264. 2002-04-08 Dick Porter <[email protected]>
  1265. * configure.in: Set -mno-cygwin here rather than in the build script
  1266. 2002-04-05 Dietmar Maurer <[email protected]>
  1267. * mono/tests/remoting2.cs: new test for async invoke of proxy calls
  1268. 2002-03-29 Martin Baulig <[email protected]>
  1269. * doc/jit-debug, docs/jit-debug-sample, docs/jit-debug-sample2:
  1270. New files, added documentation for the debugging code.
  1271. * doc/web/commands: Added the debugging pages.
  1272. * docs/jit-debug: Removed, this is now on the web site.
  1273. 2002-03-24 Martin Baulig <[email protected]>
  1274. * man/mcs.1: Documented the new --debug option and added a section
  1275. about debugging support.
  1276. * man/mono.1: Documented the new --dwarf and --dwarf-plus options.
  1277. 2002-03-21 Martin Baulig <[email protected]>
  1278. * configure.in: Added check for <elf.h>.
  1279. 2002-03-18 Dick Porter <[email protected]>
  1280. * configure.in: Only look for libgc on the system. Default to not
  1281. using GC at all, because it doesn't work with the jit.
  1282. 2002-03-17 Miguel de Icaza <[email protected]>
  1283. * configure.in: Add support for building the included boehm GC.
  1284. Thu Mar 7 17:19:44 CET 2002 Paolo Molaro <[email protected]>
  1285. * configure.in: detect Boehm GC libs and add --with-gc switch.
  1286. Boehm GC needs to be explicitly enabled since the JIT currently fails
  1287. in some cases with it.
  1288. 2002-02-27 Dietmar Maurer <[email protected]>
  1289. * mono/tests/fib.cs: it is now possible to pass a repeat count as
  1290. command line argument, for example fib.exe 20 runs the test 20
  1291. times.
  1292. 2002-02-25 Sergey Chaban <[email protected]>
  1293. * configure.in: added support for ARM target arch.
  1294. Uncommented and modified arm-*-linux* target,
  1295. added mono/arch/arm/Makefile to AC_OUTPUT list.
  1296. 2002-02-21 Mark Crichton <[email protected]>
  1297. * status/class.xml: Added contact info for RNGCryptoServiceProvider
  1298. class and Rijndael classes.
  1299. * status/maintainers.xml: Added contact info to maintainers list.
  1300. 2002-02-21 Mark Crichton <[email protected]>
  1301. * configure.in: Add checks for a system-provided entropy device
  1302. * acconfig.h: Added HAVE_CRYPT_RNG and NAME_DEV_RANDOM
  1303. 2002-02-20 Dick Porter <[email protected]>
  1304. * acconfig.h:
  1305. * configure.in: Always build without cygwin support on windows
  1306. 2002-02-19 Radek Doulik <[email protected]>
  1307. * mono/tests/pinvoke.cs: use more pinvoke test methods
  1308. 2002-02-19 Radek Doulik <[email protected]>
  1309. * mono/tests/libtest.c (mono_test_many_short_arguments): new test
  1310. method
  1311. (mono_test_many_byte_arguments): ditto
  1312. 2002-02-18 Radek Doulik <[email protected]>
  1313. * mono/tests/Makefile.am: added small test library for pinvoke
  1314. testing
  1315. * mono/tests/libtest.c (mono_test_many_int_arguments): new file,
  1316. new function to test pinvoke
  1317. * mono/tests/pinvoke.cs (Test): added pinvoked method with 10 int
  1318. arguments
  1319. * mono/tests/Makefile.am: display # of passing tests too
  1320. added simple shared library libtest with testing function for
  1321. pinvoke
  1322. 2002-02-17 Radek Doulik <[email protected]>
  1323. * mono/tests/Makefile.am (test): display # of failed tests
  1324. 2002-02-16 Jeffrey Stedfast <[email protected]>
  1325. * configure.in: Add checks for SOL_IP, SOL_TCP, and
  1326. IP_PKTINFO. Also check for struct ip_mreqn.
  1327. 2002-02-14 Jeffrey Stedfast <[email protected]>
  1328. * configure.in: Add checks to see if we need to link to libsocket,
  1329. libnsl, and/or librt. Also check for inet_pton and inet_aton.
  1330. 2002-02-13 Jeffrey Stedfast <[email protected]>
  1331. * acconfig.h: #undef USE_MONO_MUTEX
  1332. * configure.in: If the system pthread implementation is lacking,
  1333. default to using mono-mutex.
  1334. 2002-02-05 Dietmar Maurer <[email protected]>
  1335. * mono/tests/enum2.cs: new file with more enum tests.
  1336. 2002-02-01 Dietmar Maurer <[email protected]>
  1337. * mono/tests/jit-long.cs: added some SHL/SHR tests
  1338. Fri Feb 1 15:32:36 CET 2002 Paolo Molaro <[email protected]>
  1339. * configure.in: allow PKG_CONFIG_PATH for the build-platform
  1340. pkg-config invocation.
  1341. Fri Feb 1 15:13:25 CET 2002 Paolo Molaro <[email protected]>
  1342. * configure.in: add some support/fixes for cross-compilation.
  1343. 2002-01-14 Dietmar Maurer <[email protected]>
  1344. * mono/tests/exception6.cs: new tests for ADD_OVF, MUL_OVF
  1345. added tests for SUB_OVF, SUB_OVF_UN
  1346. 2001-12-21 Dietmar Maurer <[email protected]>
  1347. * mono/tests/Makefile.am (TESTSRC): disabled stream-writer test
  1348. 2001-12-21 Aaron Weber <[email protected]>
  1349. * doc/faq (A): added a linebreak that was missing and was causing
  1350. a heading to appear badly.
  1351. 2001-12-20 Aaron Weber <[email protected]>
  1352. * doc/faq: added <a name=""> nav links, and moved all MSFT-related
  1353. questions into a single section.
  1354. 2001-12-17 Aaron Weber <[email protected]>
  1355. * doc/faq (Q): Question-by-question, line-by-line revision.
  1356. 2001-12-17 Dietmar Maurer <[email protected]>
  1357. * mono/tests/time.cs: new test
  1358. 2001-11-30 Radek Doulik <[email protected]>
  1359. * configure.in: remove ACCESS_UNALIGNED="no" from ppc
  1360. 2001-11-29 Radek Doulik <[email protected]>
  1361. * configure.in (ACCESS_UNALIGNED): uncommented and modified
  1362. powerpc-*-linux*
  1363. generate mono/arch/ppc/Makefile
  1364. 2001-11-26 Dietmar Maurer <[email protected]>
  1365. * mono/tests/exception3.cs: modified the test to show a bug in the
  1366. current exception handling implementation.
  1367. 2001-11-13 Dick Porter <[email protected]>
  1368. * configure.in: Some more tests for pthread features
  1369. (specifically, glibc 2.1 doesnt define pthread_mutex_timedlock but
  1370. still needs _GNU_SOURCE for PTHREAD_MUTEX_RECURSIVE)
  1371. 2001-11-09 Dick Porter <[email protected]>
  1372. * configure.in: Try and get large file support, but it's not fatal
  1373. if it's not there (the io-layer just ignores the high word in that
  1374. case.)
  1375. Check for windows builds, and only bother to look for pthreads and
  1376. large files if we're not building for cygwin or native win32. Not
  1377. having pthread support on Posix systems is now a fatal error.
  1378. * autogen.sh: Fix ACLOCAL_FLAGS - it wasn't being passed to
  1379. aclocal
  1380. 2001-10-15 Dietmar Maurer <[email protected]>
  1381. * mono/tests/Makefile.am: removed JITTESTS, simply run all tests for
  1382. target testjit.
  1383. 2001-10-11 Dietmar Maurer <[email protected]>
  1384. * docs/object-layout: more documentation
  1385. Mon Oct 8 20:27:50 CEST 2001 Paolo Molaro <[email protected]>
  1386. * configure.in: define NO_UNALIGNED_ACCESS for platforms that
  1387. can't read on unaligned boundaries
  1388. 2001-10-04 Dick Porter <[email protected]>
  1389. * configure.in: Do some deeper checks on pthreads for some of the
  1390. more interesting functions
  1391. 2001-09-24 Dietmar Maurer <[email protected]>
  1392. * mono/tests/Makefile.am (testjit): a new target to test the JITer
  1393. * mono/tests/jit-*: added some test for the JITer
  1394. 2001-09-23 Dick Porter <[email protected]>
  1395. * configure.in: Arrange to compile dummy thread support routines
  1396. if pthread isnt available
  1397. 2001-09-23 Dick Porter <[email protected]>
  1398. * configure.in: Check for pthread.h, so that we can check for the
  1399. HAVE_PTHREAD_H define in config.h
  1400. 2001-09-21 Dick Porter <[email protected]>
  1401. * configure.in: Check for libpthread
  1402. 2001-09-19 Dietmar Maurer <[email protected]>
  1403. * mono/tests/test-ops.cs: added more tests
  1404. Mon Sep 10 20:19:00 CEST 2001 Paolo Molaro <[email protected]>
  1405. * configure.in: check for sizeof(void*) and for the architecture.
  1406. 2001-09-05 Dick Porter <[email protected]>
  1407. * autogen.sh: Fixed the section that adds $ACLOCAL_FLAGS to the
  1408. aclocal invocation, so putting aclocal files in /usr/local works
  1409. 2001-08-30 Dietmar Maurer <[email protected]>
  1410. * *: removed the libffi dependency, mono now compiles on cygwin
  1411. * mono/wrapper/build-dll: new file.
  1412. 2001-08-28 Dietmar Maurer <[email protected]>
  1413. * mono/tests/console.cs: impl.
  1414. * mono/tests/box.cs: impl.
  1415. * mono/tests/stream-writer.cs: impl.
  1416. Mon Aug 27 20:24:26 CEST 2001 Paolo Molaro <[email protected]>
  1417. * mono/tests/*: New test cases, mostly for virtual method dispatch.
  1418. Use make testb for the slow benchmarking programs,
  1419. make test for the usual regression test checks.
  1420. 2001-08-22 Rodrigo Moya <[email protected]>
  1421. * mono/cil/Makefile.am:
  1422. * mono/wrapper/Makefile.am: use correct variables for installation
  1423. directories
  1424. Tue Aug 21 18:54:06 CEST 2001 Paolo Molaro <[email protected]>
  1425. * mono/tests/exceptions*: enhanced and added more tests for
  1426. exceptions.
  1427. 2001-08-20 Miguel de Icaza <[email protected]>
  1428. * mono/Makefile.am (SUBDIRS): Remove `test' from here to allow us
  1429. to pass make distcheck
  1430. * mono/wrapper/Makefile.am (EXTRA_DIST): Include genwrapper.pl
  1431. * configure.in, Makefile.am, runtime/Makefile.am (dist-hook,
  1432. install-data-hook): Added mechanism to distribute and install the
  1433. dll files.
  1434. 2001-08-20 Dietmar Maurer <[email protected]>
  1435. * mono/tests/stream.cs: new tests for the Stream class
  1436. * configure.in: I really need LIBTOOL for libmonowrapper.so, so I
  1437. added it again.
  1438. 2001-08-16 Alex Graveley <[email protected]>
  1439. * configure.in: Replace AM_PROG_LIBTOOL with AC_PROG_RANLIB. This
  1440. removes libtool dependency on all of Mono.
  1441. 2001-08-10 Dietmar Maurer <[email protected]>
  1442. * mono/tests/array.cs: more array tests
  1443. 2001-08-09 Dietmar Maurer <[email protected]>
  1444. * mono/tests/array.cs: more array tests
  1445. 2001-08-06 Dietmar Maurer <[email protected]>
  1446. * mono/tests/pinvoke.cs: we can now print strings ;-)
  1447. * mono/tests/array.cs: new test for arrays
  1448. 2001-08-02 Alex Graveley <[email protected]>
  1449. * libffi/*: Import libffi CVS version, with minor changes to make it
  1450. compile.
  1451. * mono/interpreter/Makefile.am: Link against
  1452. ../../libffi/.libs/libffi.a.
  1453. * Makefile.am: Add libffi
  1454. * autogen.sh: Replace with adapted gnome autogen.sh
  1455. * configure.in: Add AC_CONFIG_SUBDIRS(libffi).
  1456. 2001-08-02 Dietmar Maurer <[email protected]>
  1457. * mono/tests/pinvoke.cs: impl.
  1458. Wed Aug 1 22:34:52 CEST 2001 Paolo Molaro <[email protected]>
  1459. * configure.in, mono/tests: added some tests for the interpreter.
  1460. 2001-07-15 Sean MacIsaac <[email protected]>
  1461. * doc/download: added instructions for cygwin
  1462. * doc/c-sharp: removed bit about compiling
  1463. * status/compare-assembly.cs: basedir should be there if
  1464. parameters are provided.
  1465. * status/makefile: made targets to dump info.
  1466. 2001-07-15 Joe Shaw <[email protected]>
  1467. * configure.in: Don't create doc/Makefile as there's nothing there
  1468. to make.
  1469. * Makefile.am: Don't build the doc directory because there's no
  1470. Makefile.am there.
  1471. * autogen.sh: Call aclocal with the $ACLOCAL_FLAGS env var.
  1472. 2001-07-15 Miguel de Icaza <[email protected]>
  1473. * doc/class-library (A): Updated FAQ with question on error 1595.
  1474. 2001-07-14 Miguel de Icaza <[email protected]>
  1475. * doc/index:
  1476. Wed Jul 11 00:36:36 CEST 2001 Paolo Molaro <[email protected]>
  1477. * status/*: scripts and data to create statistics about the
  1478. class library status.
  1479. 2001-07-09 Alex Graveley <[email protected]>
  1480. * doc/makefile (clean): Add clean target.
  1481. * doc/web/makefile (clean): Ditto.
  1482. 2001-07-09 Alex Graveley <[email protected]>
  1483. * doc/makefile (all-docs): Fix typo.
  1484. 2001-05-30 Miguel de Icaza <[email protected]>
  1485. * NEWS: