forked from mono/mono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
4216 lines (2590 loc) · 127 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2008-04-29 Kornél Pál <[email protected]>
* configure.in: Check for sys/utime.h.
* winconfig.h: Define HAVE_SYS_UTIME_H, undef HAVE_UTIME_H.
2008-04-28 Zoltan Varga <[email protected]>
* configure.in: Use lowercase for 'integrity of package' for consistency.
2008-04-28 Geoff Norton <[email protected]>
* build-iphone.sh: Some updates to work with the latest SDK.
2008-04-24 Zoltan Varga <[email protected]>
* configure.in: Use the three argument form of AC_DEFINE everywhere since it is
required by autoheader for parameters not in acconfig.h.
* acconfig.h: Removed, all the parameters are defined in configure.in now.
2008-04-24 Rodrigo Kumpera <[email protected]>
* runtime/Makefile.am (mcs-compileall): Turn on the verifier.
2008-04-18 Wade Berrier <[email protected]>
* scripts/mono-find-requires.in: Add env var to ignore scanning
of .config files.
Fix extra whitespace when no config reqs are found.
2008-04-17 Zoltan Varga <[email protected]>
* configure.in: Enable the valgrind header check on amd64 too.
2008-04-16 Wade Berrier <[email protected]>
* scripts/mono-find-requires.in: Fix extraneous whitespace that makes
some reqs from .config be on the same line as the monodis reqs.
2008-04-16 Jb Evain <[email protected]>
* configure.in, data/Makefile.am: add a smcs.pc file,
that moonlight can use to locate smcs.exe.
2008-04-11 Atsushi Enomoto <[email protected]>
* scripts/Makefile.am : we need genxs2 for generating 2.0 based
serializer.
2008-04-08 Dean Brettle <[email protected]>
* configure.in, runtime/Makefile.am: create a symlink at
mono/runtime/etc/mono/2.0/Browsers/Compat.browser similar to machine.config
2008-03-26 Massimiliano Mantione <[email protected]>
* configure.in: Added PLATFORM_LINUX automake conditional.
2008-03-25 Zoltan Varga <[email protected]>
* runtime/Makefile.am (mcs-compileall): Skip net 2.1 assemblies for now.
2008-03-22 Zoltan Varga <[email protected]>
* configure.in: Pass CPPFLAGS to libgc configure using ac_configure_args instead
of exporting it. Fixes #373113.
2008-03-20 Geoff Norton <[email protected]>
* build-iphone.sh: Add CPLUS_INCLUDE_PATH.
2008-03-20 Kornél Pál <[email protected]>
* configure.in: Added Windows version macros to CPPFLAGS and export
CPPFLAGS for libgc configure to ensure Windows version compatibility.
* winconfig.h: Added compile-time feature detection and support for
64-bit Windows versions. Updated VERSION to 1.9.
2008-03-19 Zoltan Varga <[email protected]>
* configure.in: Fix a typo.
2008-03-17 Geoff Norton <[email protected]>
* build-iphone.sh: Fix a typo.
2008-03-12 Atsushi Enomoto <[email protected]>
* scripts/Makefile.am : added xsd2.
2008-03-12 Geoff Norton <[email protected]>
* build-iphone.sh: A autogen/make wrapper to define everything to build
mono for the iphone.
* configure.in: Add support for arm-apple-darwin (iPhone).
2008-03-05 Wade Berrier <[email protected]>
* scripts/Makefile.am: fix typo so that 'scripts_defaults' scripts get
installed.
Fix sed command so that 'scripts_defaults' scripts work.
Add some files to the cleanup list.
2008-03-02 Miguel de Icaza <[email protected]>
* configure.in: No need to detect mcs1, as we are going to keep
mcs as the 1.0 compiler and gmcs as the 2.0 compiler. Since
making mcs a 2.0 compiler caused too many problems.
2008-02-29 Miguel de Icaza <[email protected]>
* configure.in: Detect if there is an mcs1 command installed as
the external c# compiler, and if this is the compiler, pick this
to bootstrap.
You need to re-autogen.sh after the first installation of mono
with the new scripts.
2008-02-28 Miguel de Icaza <[email protected]>
* scripts/Makefile.am: Implement new defaults for the Mono 2.0
release, 2.0 profile executables are now the defaults (al, ilasm,
mkbundle, mono-api-info, monop, resgen, wsdl and mcs).
Old commands running under the 1.0 profile are still available
by having the number 1 appended to their command name (al1,
ilasm1, mcs1, mkbundle1, mono-api-info1, monop1, resgen1, wsdl1).
2008-02-05 Zoltan Varga <[email protected]>
* runtime/Makefile.am: Update after the changes to mcs/Makefile.
2008-02-03 Zoltan Varga <[email protected]>
* runtime/Makefile.am (clean-local): Use mono --wapi=semdel instead of the
nonexistent semdel utility.
* runtime/semdel-wrapper.in: Delete.
2008-01-28 Wade Berrier <[email protected]>
* configure.in: version bump -> 1.9
2008-01-26 Zoltan Varga <[email protected]>
* docs/mini-porting.txt: Add some info about the order the JIT regression
tests should be run.
2008-01-26 Daniel Nauck <[email protected]>
* scripts/mono-service.in: fix compability with the dash shell,
it doesn't like the use of >& without a file descriptor
2008-01-09 Zoltan Varga <[email protected]>
* runtime/Makefile.am (mcs-compileall): Remove some whitespace after
a backslash.
2008-01-05 Zoltan Varga <[email protected]>
* Makefile.am (DIST_SUBDIRS): Use $(eglib_dir) instead of eglib to
fix make dist.
2008-01-05 Andreas Faerber <[email protected]>
* configure.in: Add support for building with eglib and VPATH.
Fixes #351893.
2008-01-05 Andreas Faerber <[email protected]>
* configure.in: Define eglib_dir.
* Makefile.am: Add eglib to subdirectory lists.
2007-12-31 Jonathan Chambers <[email protected]>
* winconfig.h: Define HAVE_GETPROCESSID.
Contributed under MIT/X11 license.
2007-12-28 Everaldo Canuto <[email protected]>
* configure.in: Add support for oprofile.
2007-12-08 Zoltan Varga <[email protected]>
* configure.in: Add check for sys/mkdev.h.
2007-12-05 Dick Porter <[email protected]>
* configure.in: Define PLATFORM_SOLARIS for solaris builds, needed
by fix for bug 323524.
2007-11-21 Dick Porter <[email protected]>
* configure.in: No need to check for glib functions any more
2007-11-19 Atsushi Enomoto <[email protected]>
* configure.in : fix win32 build.
2007-11-16 Zoltan Varga <[email protected]>
* configure.in: Make --with-moonlight=yes the default.
2007-11-15 Dick Porter <[email protected]>
* configure.in: Check for g_strsplit_set() and g_strv_length()
2007-11-10 Alp Toker <[email protected]>
* samples/embed/teste.c: Add a newline at the end of this printf()
2007-11-08 Wade Berrier <[email protected]>
* configure.in: add sysconfdir for mcs config.make
version bump -> 1.2.6
2007-11-07 Geoff Norton <[email protected]>
* configure.in: Add a check for sockaddr_in(6).sin(6)_len
2007-11-05 Geoff Norton <[email protected]>
* configure.in: Set GMODULE_CFLAGS and GMODULE_LIBS to be set
with eglib as well
2007-10-30 Raja R Harinath <[email protected]>
* runtime/Makefile.am ($(tmpinst)/bin/gmcs): Update rule to point
to location of 'gmcs.exe'.
2007-10-29 Raja R Harinath <[email protected]>
* configure.in (olive_topdir): Look for $olivedir in the source tree.
2007-10-19 Marek Habersack <[email protected]>
* scripts/Makefile.am (scripts_2_0): added mconfig to the list
2007-10-09 Wade Berrier <[email protected]>
* configure.in: Split up the mono version that goes into Consts.cs
to make sure each segment is no longer than 4 digits.
This allows svn revisions to be used.
2007-10-02 Miguel de Icaza <[email protected]>
* scripts/mono-test-install: (temp_exe): Add tests for dynamic
libraries that libgdiplus might be missing
Add detection and diagnostics for
broken System.Drawing installations.
2007-09-19 Jb Evain <[email protected]>
* configure.in: if there's a olive directory in the same folder
as mono, we now override its config.make, so that we don't build
the olive moonlight assemblies if mono is not build with moonlight
support.
2007-09-18 Andreas Faerber <[email protected]>
* configure.in: Add support for building on Linux/ppc64 host.
2007-09-18 Marek Habersack <[email protected]>
* configure.in: added additional Makefile to be generated in the
mono/tests/assemblyresolve/ subdir.
2007-09-17 Zoltan Varga <[email protected]>
* docs/memory-management.txt: A new file describing metadata memory management.
2007-09-14 Jonathan Chambers <[email protected]>
* winconfig.h: Define WINVER and _WIN32_WINNT for VS
build.
Contributed under MIT/X11 license.
2007-09-14 Jonathan Chambers <[email protected]>
* winconfig.h: Don't define HAVE_UNISTD_H on MSVC build.
Contributed under MIT/X11 license.
2007-09-03 Atsushi Enomoto <[email protected]>
* configure.in : On windows, require advapi32.dll.
2007-08-23 Robert Jordan <[email protected]>
* configure.in: add get|setpriority detection.
Mon Aug 20 15:23:01 CEST 2007 Paolo Molaro <[email protected]>
* configure.in: use more symbol renaming fo OSX (bug #82463).
2007-08-20 Jb Evain <[email protected]>
* scripts/smcs.in: use --runtime=moonlight instead of
forcing MONO_PATH.
Mon Aug 20 12:34:36 CEST 2007 Paolo Molaro <[email protected]>
* configure.in: check for gerusage().
Mon Jul 30 17:59:04 CEST 2007 Paolo Molaro <[email protected]>
* configure.in: Enable sigaltstack handling check by default to get
wider testing.
2007-07-26 Jb Evain <[email protected]>
* scripts/smcs.in: use smcs.exe.
2007-07-24 Wade Berrier <[email protected]>
* configure.in: version bump -> 1.2.5
2007-07-17 Jb Evain <[email protected]>
* scripts/Makefile.am: new monolinker script.
2007-07-11 Jb Evain <[email protected]>
* scripts/smcs.in, scripts/Makefile.am: new smcs script.
2007-07-05 Wade Berrier <[email protected]>
* scripts/mono-find-requires.in: add special 64bit case for ia64.
(rpm used to provide libname as well as libname()(64bit) on ia64, but
now it only provides the first.)
2007-06-28 Jonathan Pryor <[email protected]>
* configure.in: Add a check for `struct utimbuf'; needed by MonoPosixHelper.
2007-06-15 Wade Berrier <[email protected]>
* scripts/mono-find-requires.in: revert back to using package names
for .config file dep scanning. This is because noarch packages can be
built on either 32 or 64 bit arches, depending on either a 32bit or 64bit
library, which is wrong.
2007-06-13 Randolph Chung <[email protected]>
* configure.in: Add hppa-linux target.
Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
2007-06-13 Randolph Chung <[email protected]>
* configure.in: Add AM_PROG_AS, needed for handling assembly file
targets.
2007-06-09 Wade Berrier <[email protected]>
* scripts/mono-find-requires.in: use lib name instead of package name
for deps found in .config files. suse's rpmlint prefers it that way.
2007-05-29 Robert Jordan <[email protected]>
* data/config.in: add mono_win32_compat entries.
2007-05-11 Raja R Harinath <[email protected]>
* Makefile.am (get-monolite-latest): Redirect wget output too.
2007-05-07 Wade Berrier <[email protected]>
* scripts/mono-find-requires.in: don't use length() on arrays;
doesn't work on older gawk versions. Calculate size manually instead.
2007-05-07 Raja R Harinath <[email protected]>
Fix parallel make.
* runtime/Makefile.am (test-support-file): Remove. Move rules ...
(_tmpinst/bin/mcs, _tmpinst/bin/gmcs, _tmpinst/bin/ilasm): ... here.
Reported by "Stephen A. Jazdzewski" <[email protected]>
2007-05-05 Wade Berrier <[email protected]>
* scripts/mono-find-provides.in: don't use 'which' anymore (never solved
anything since it broke symlinks)
* scripts/mono-find-requires.in: also don't use 'which'
Parse .config files to look for native libs. Honor 'os' attributes for
dllmaps. Query rpm db for package that provides this lib. Support 64bit
rpm configurations, as well as 32bit running on 64bit.
2007-04-27 Marek Habersack <[email protected]>
* data/net_2_0/web.config: use fully qualified assembly names in
<compilation><assemblies>.
2007-04-19 Wade Berrier <[email protected]>
* configure.in: version bump -> 1.2.4
2007-04-15 Marek Habersack <[email protected]>
* data/net_2_0/web.config: add the default build providers
configuration.
2007-04-06 Andreas Faerber <[email protected]>
* configure.in: Added support for Solaris/amd64. Fixes bug #81325
2007-04-06 Marek Habersack <[email protected]>
* data/net_2_0/machine.config: corrected the xhtmlConformance
entry to reference correct type.
* data/net_2_0/web.config: siteMap must be enabled by
default. Fixes bug #80611
2007-04-05 Marek Habersack <[email protected]>
* data/browscap.ini: updated to the latest version.
Applied Mono-specific changes.
2007-03-28 Raja R Harinath <[email protected]>
* runtime/mono-wrapper.in (PATH): Include _tmpinst/bin. Ensure
that library invocations of 'mcs' and 'gmcs' pick the in-tree versions.
* runtime/Makefile.am (mcs-do-run-test-profiles): Don't set PATH.
(all-local, install-local): Depend on TEST_SUPPORT_FILES too.
(test-support-files): Move creation of _tmpinst/bin directory ...
($(tmpinst)/bin/mono): ... here.
($(tmpinst)/bin/mbas, $(tmpinst)/bin/pedump): Remove.
(test-support-file): Depend on $(tmpinst)/bin/mono.
2007-03-22 Marek Habersack <[email protected]>
* data/net_2_0/machine.config: added a few missing sections, added
missing allowDefinition and allowLocation attributes.
2007-03-16 Wade Berrier <[email protected]>
* configure.in: version bump -> 1.2.3.50 (RaceToLinux special release)
2007-03-16 Marek Habersack <[email protected]>
* data/net_2_0/machine.config: added default profile provider
configuration.
2007-03-15 Marek Habersack <[email protected]>
* runtime/Makefile.am: add browscap.ini to symlinks
* configure.in: make sure browscap.ini is symlinked to from
runtime/etc/ so that no web tests that depend on the file's
presence fail.
2007-03-15 Jonathan Chambers <[email protected]>
* winconfig.h: Don't use MONO_XEN_OPT on windows.
Contributed under MIT/X11 license.
2007-03-14 Marek Habersack <[email protected]>
* data/net_2_0/machine.config: add two missing section handlers.
2007-03-13 Wade Berrier <[email protected]>
* Makefile.am:
* msvc/Makefile.am:
Update EXTRA_DIST to take into account .vcproj file moves
2007-03-13 Jonathan Chambers <[email protected]>
* mono.sln, libmono.vcproj, mono.vcproj, genmdesc.vcproj, winsetup.bat,
mono/monodiet.vcproj, mono/pedump.vcproj: Move to msvc directory.
2007-03-13 Jonathan Chambers <[email protected]>
* libmono.vcproj, mono.vcproj, genmdesc.vcproj, mono/monodiet.vcproj,
mono/pedump.vcproj: Fix Release build target, add define to remove CRT warnings,
structure output folders a bit better, begin WIN64 port, and change
libmono to build a DLL instead of a static library.
* mono.sln: Begin x64 target support.
Fri Mar 9 18:57:47 CET 2007 Paolo Molaro <[email protected]>
* Makefile.am, configure.in, msvc: add msvc directory to the
distribution.
* msvc/create-windef.pl, msvc/mono.def: added def file for exported
functions.
2007-03-09 Zoltan Varga <[email protected]>
* docs/aot-compiler.txt: Update 'future work'.
2007-03-07 Zoltan Varga <[email protected]>
* docs/aot-compiler.txt: Add into about the PLT.
* docs/aot-compiler.txt: Update a bit to reflect recent changes.
2007-02-24 Raja R Harinath <[email protected]>
* data/config.in (odbc32.dll) [os=osx]: Fix misplaced ".
2007-02-20 Wade Berrier <[email protected]>
* scripts/Makefile.am: Add api-info and api-diff wrappers
2007-02-15 Marek Habersack <[email protected]>
* data/net_2_0/machine.config: add default provider factories.
2007-02-01 Geoff Norton <[email protected]>
* configure.in: Support NetBSD GC.
Thu Feb 1 12:29:23 CET 2007 Paolo Molaro <[email protected]>
* configure.in: include LIBS in libmono_ldflags on all archs.
* mint.pc.in, mono-uninstalled.pc.in, mono.pc.in: removed extra -lm.
2007-02-01 Miguel de Icaza <[email protected]>
* configure.in: Naive attempt at getting -ldl in mono.pc
2007-01-31 Marek Habersack <[email protected]>
* data/net_2_0/machine.config: prepare the configuration for the
Mainsoft.Web administrative application.
2007-01-31 Atsushi Enomoto <[email protected]>
* configure.in : w32 build fix; add -lwinmm as Tor suggested.
Mon Jan 29 12:04:38 CET 2007 Paolo Molaro <[email protected]>
* configure.in, mint.pc.in mono-uninstalled.pc.in mono.pc.in:
put back the flag to export symbols from the binary which is
no more provided by gmodule (thanks to Robert Jordan <[email protected]>
for noticing).
2007-01-29 Robert Jordan <[email protected]>
* libmono.vcproj, winconfig.h: Reflect recent changes.
2007-01-12 Gert Driesen <[email protected]>
* scripts/Makefile.am: Added 'al2'.
2007-01-11 Dick Porter <[email protected]>
* acconfig.h:
* configure.in: Check for IP_DONTFRAGMENT and IP_MTU_DISCOVER.
2007-01-11 Marek Habersack <[email protected]>
* data/net_2_0/machine.config: Added the DbProviderFactories
section, together with the first entry - for SQLite.
2007-01-03 Wade Berrier <[email protected]>
* scripts/mono-find-provides.in:
* scripts/mono-find-requires.in: error out if monodis isn't
functioning properly. Otherwise when building rpms,
the provides/requires isn't generated correctly if monodis
isn't present.
Fixes: bnc #227362
2007-01-01 Miguel de Icaza <[email protected]>
* configure.in (darwin.CPPFLAGS): Temporary workaround for the bug
reported in 77324. When we get a linker script for MacOS we can
take this out, but for now lets keep it in here.
* scripts/mono-service.in (debug): Add --debug, --no-daemonize and
make sure that this works with 2.0 (wrong binary was being
refereced).
Fixes: #80309
Mon Dec 18 18:19:50 CET 2006 Paolo Molaro <[email protected]>
* configure.in: fixed compiler/linker options when
configuring under hpux/ia64 (patch from [email protected]
(Warren Smith)).
Mon Dec 18 15:28:49 CET 2006 Paolo Molaro <[email protected]>
* configure.in: detection code for dlopen ().
Mon Dec 11 10:23:18 CET 2006 Paolo Molaro <[email protected]>
* configure.in, mono.pc.in, */Makefile.am: istall the header
files in a API version specific directory.
2006-12-07 Vladimir Krasnov <[email protected]>
* data/browscap.ini: added msdomversion for ie6/7,
fixed ecmascriptversion in ie6/7
2006-11-28 Marek Habersack <[email protected]>
* data/net_2_0/web.config: Added the imported namespaces statement
for ASP.NET compilation.
2006-11-17 Wade Berrier <[email protected]>
* configure.in: version bump to 1.2.1
Thu Nov 16 12:59:50 CET 2006 Paolo Molaro <[email protected]>
* configure.in: added --disable-mcs-build for use
with embedded systems or other cases where we don't want
or can't to spend time compiling the managed part of the runtime.
2006-11-02 Wade Berrier <[email protected]>
* configure.in: version bump to 1.2
2006-11-02 Michael Hutchinson <[email protected]>
* data/net_2_0/machine.config: defaultProxy section is no longer
necessary, so remove.
2006-11-01 Jonathan Pryor <[email protected]>
* configure.in: Add type checks for blkcnt_t, blksize_t, suseconds_t. Some
versions of Mac OS X don't define these, needed by support/map.c.
2006-10-26 Jonathan Pryor <[email protected]>
* configure.in: Add type checks for structs pollfd, stat, timeval, timezone.
This is so that support/map.c can use HAVE_STRUCT_... wrappers around
structure conversion functions, allowing them to be omitted from the Win32
build.
2006-10-16 Kornél Pál <[email protected]>
* libmono.vcproj: Removed unicode.h and unicode.c. Changed absolute
path in AdditionalLibraryDirectories to relative.
2006-10-13 Joe Shaw <[email protected]>
* samples/size/size.c: Flesh this out quite a bit more so that
its results are more accurate.
* samples/size/sample.cs: Add a few more test cases.
2006-10-12 Zoltan Varga <[email protected]>
* configure.in: Disable visibility("hidden") on cygwin as well.
2006-10-10 Zoltan Varga <[email protected]>
* configure.in: Get rid of --with-nptl.
Sat Sep 30 12:11:56 CEST 2006 Paolo Molaro <[email protected]>
* configure.in: link to libnsl only if needed.
2006-09-19 Raja R Harinath <[email protected]>
* runtime/Makefile.am (etc/mono/config): Fix rule to avoid writing
into a symlink created by the 2006-09-13 change below.
2006-09-17 Zoltan Varga <[email protected]>
* docs/thread-safety.txt: Moved here from mono/metadata.
2006-09-16 Zoltan Varga <[email protected]>
* configure.in: Avoid non-static build warning on windows.
2006-09-16 Raja R Harinath <[email protected]>
Fix srcdir!=builddir issue.
* configure.in (runtime/etc/mono/config): Remove erroneous code.
* runtime/Makefile.am (etc/mono/config): Rename from wrapper-config.
* runtime/mono-wrapper.in: Update.
2006-09-15 Jonathan Pryor <[email protected]>
* configure.in: Remove check for setkey(3).
2006-09-13 Jonathan Pryor <[email protected]>
* configure.in: Add command to create runtime/etc/mono/config. This is
needed so that programs which use the bootstrap mono build get the
appropriate <dllmap/> entries (in particular, the mono-shlib-cop unit
tests requires that a $prefix/etc/mono/config be present to run).
* runtime/Makefile.am: Create runtime/etc/mono/config.
2006-09-11 Zoltan Varga <[email protected]>
* mono.vcproj: Fix VC build.
2006-09-01 Zoltan Varga <[email protected]>
* configure.in: More alpha updates from Sergey Tikhonov <[email protected]>.
2006-08-31 Zoltan Varga <[email protected]>
* samples/embed/test-invoke.vcproj samples/embed/teste.vcproj: Fix include paths for newer glib versions.
* genmdesc.vcproj: Fix include paths for newer glib versions.
* libmono.vcproj: Add further missing sources, fix include paths for newer glib versions.
* libmono.vcproj: Add aot-compiler.c and aot-runtime.c as source files.
* README.vsnet: Fix a typo.
2006-08-31 Zoltan Varga <[email protected]>
* configure.in (PLATFORM_WIN32): Add -mno-cygwin to libmono_cflags/ldflags. Fixes
#79180.
2006-08-15 Miguel de Icaza <[email protected]>
* configure.in: Add support for an altenative version of glib.
2006-08-29 Wade Berrier <[email protected]>
* configure.in: Add required CFLAGS for s390[x] (-mbackchain)
2006-08-23 Gonzalo Paniagua Javier <[email protected]>
* configure.in: check for mkstemp.
2006-08-22 Raja R Harinath <[email protected]>
* runtime/Makefile.am (mcs-compileall): Remove mention of Microsoft.VisualBasic.
2006-07-25 Gonzalo Paniagua Javier <[email protected]>
* configure.in: add check for sys/syscall.h. Remove aio_* detection as
it has not been used for a while now.
2006-07-19 Wade Berrier <[email protected]>
* scripts/mono-find-provides.in: Remove support for only scanning files in the gac.
The problem is that mono apps are often broken up into subpackages, and deps can only
be resolved if the assemblies are in the gac, even when they sometimes shouldn't be.
(See https://bugzilla.novell.com/show_bug.cgi?id=144655)
2006-07-19 Zoltan Varga <[email protected]>
* configure.in: Applied patch from Sergey Tikhonov <[email protected]>. Beginning
of alpha support.
2006-07-17 Wade Berrier <[email protected]>
* scripts/mono-find-requires.in: Change rpm requires to >= 1.0.3300.0 instead of
=, since we don't explicitly provide 1.0.3300.0 versions.
2006-07-09 Zoltan Varga <[email protected]>
* docs/exception-handling.txt: Update libunwind status since it is not really
dead.
* docs/exception-handling.txt: Note the changes in the handling of SIGSEGV
received while in native code.
2006-07-04 Zoltan Varga <[email protected]>
* configure.in: Add the contents of LIBS to libmono_ldflags on sol-x86 too.
2006-07-01 Zoltan Varga <[email protected]>
* configure.in: Add the contents of LIBS to libmono_ldflags instead on solaris.
2006-06-30 Zoltan Varga <[email protected]>
* configure.in: Add -lsocket -lnsl to libmono_ldflags on solaris to fix the
mkbundle tests.
2006-06-27 Zoltan Varga <[email protected]>
* configure.in: Disable --with-tls=__thread on solaris/x86.
2006-06-24 Zoltan Varga <[email protected]>
* configure.in: Always pass CPPFLAGS to libgc configure.
2006-06-22 Sebastien Pouliot <[email protected]>
* configure.in: Add the Makefile to create in order to run the CAS
tests.
2006-06-14 Sebastien Pouliot <[email protected]>
* README.vsnet: Make it clear that building Mono under cygwin is a
pre-requirement to using the VS.NET solution (with the supplied
instructions).
2006-06-01 Zac Bowling <[email protected]>
* configure.in, fix typo breaking build (test instead of text on last
line)
2006-05-24 Andrew Skiba <[email protected]>
* configure.in, runtime/Makefile.am: create a symlink at
mono/runtime/etc/mono/2.0/web.config similar to machine.config
2006-05-24 Raja R Harinath <[email protected]>
* scripts/Makefile.am (scripts_1_0, scripts_2_0): Move
nunit-console ...
(scripts_nunit): ... here.
(REWRITE1_DEBUG, REWRITE2_DEBUG): New defines that pass a --debug
to the mono runtime.
(nunit-console, nunit-console2): New targets. Use them.
2006-05-23 Zoltan Varga <[email protected]>
* libatomic_ops: Remove this, as using it didn't work out.
2006-05-23 Martin Baulig <[email protected]>
* configure.in: Disable the debugger if we're not using the
included gc.
2006-05-10 Atsushi Enomoto <[email protected]>
* data/net_2_0/machine.config : updated webRequestModules,
defaultProxy and connectionManagement handlers.
2006-05-10 Zoltan Varga <[email protected]>
* configure.in: Disable usage of visibility(hidden) on solaris x86.
2006-05-07 Zoltan Varga <[email protected]>
* data/mono.supp: Applied patch from Matt Hargett ([email protected]).
Generalize path to the mono executable.
2006-05-02 Jonathan Chambers <[email protected]>
* configure.in: Add oleaut32 on Win32 builds for BSTR support
2006-05-01 Chris Toshok <[email protected]>
* data/net_2_0/machine.config: add connectionStringName's
parameters to the role/membership providers.
2006-04-30 Raja R Harinath <[email protected]>
* Makefile.am (mcs-do-clean, mcs-do-compiler-tests): Clean
and run tests in mono/tests too.
2006-04-25 Wade Berrier <[email protected]>
* scripts/mono-find-provides.in: Only scan files that are in the gac.
This allows packages to contain private assemblies that won't conflict
with other packages. Fixes bugzilla.novell.com #144655.
2006-04-21 Alp Toker <[email protected]>
* scripts/mono-service.in: Usage info fixes:
Lock file was referred to as .log instead of .lock. Fixes #75724.
$0 was in single-quoted, so not interpreted.
2006-04-13 Chris Toshok <[email protected]>
* data/net_2_0/machine.config: add system.data section listing the
SqlClient provider. Also add system.web section listing the
membership and role providers. This is here instead of in
web.config because the providers are meant to be available to
non-web applications as well.
2006-04-11 Chris Toshok <[email protected]>
* data/net_2_0/web.config: add the builtin expression builders.
2006-04-11 Gert Driesen <[email protected]>
* scripts/Makefile.am (scripts_2_0): Add 'resgen2'.
2006-04-07 Chris Toshok <[email protected]>
* data/net_2_0/machine.config: oh, and
system.web/anonymousIdentification.
2006-04-07 Chris Toshok <[email protected]>
* data/net_2_0/machine.config: add system.web/membership and
system.web/xhtmlConformance config sections.
2006-04-04 Zoltan Varga <[email protected]>
* configure.in: Add a check and a helpful error message when 'ar' is not found on solaris.
2006-04-01 Zoltan Varga <[email protected]>
* data/mono.supp: Add "Use of uninitialized value of size 8" too.
2006-03-31 Massimiliano Mantione <[email protected]>
* docs/tree-mover.txt: Added tree mover documentation.
Wed, 29 Mar 2006 20:54:05 +0200 Paolo Molaro <[email protected]>
* configure.in, mono/Makefile.am: remove the now unused handles dir
from the build.
2006-03-22 Chris Toshok <[email protected]>
* data/net_2_0/web.config: add RoleManagerModule to httpModules.
* data/net_2_0/machine.config: add system.web/roleManager section
handler.
2006-03-20 Zoltan Varga <[email protected]>
* libmono.vcproj: Add some newly added source files.
2006-03-17 Zoltan Varga <[email protected]>
* libmono.vcproj: Remove os/win32/util.h.
2006-03-09 Vladimir Krasnov <[email protected]>
* Added data/net_1_1/DefaultWsdlHelpGenerator.jvm.aspx
with removed proxy class generation for Grasshopper
2006-03-08 Chris Toshok <[email protected]>
* data/net_2_0/web.config: add a default siteMap section with the
AspNetXmlSiteMapProvider provider.
* data/net_2_0/machine.config: add system.web/siteMap section
info.
2006-03-03 Zoltan Varga <[email protected]>
* configure.in mono/os: Merge the contents of libmonoos to metadata/assembly.c and
get rid of os/unix and os/win32.
Wed Mar 1 12:37:43 CET 2006 Paolo Molaro <[email protected]>
* configure.in: added checks for visibility attribute,
option to disable generics, disabled options string define.
2006-02-27 Raja R Harinath <[email protected]>
* configure.in (runtime/etc/mono/{1.0,2.0}/machine.config):
Fix m4-quoting.
Sat Feb 25 11:53:30 CET 2006 Paolo Molaro <[email protected]>
* configure.in: more feature for --enable-minimal flags.
2006-02-24 Gonzalo Paniagua Javier <[email protected]>
* configure.in: define PLATFORM_BSD.
2006-02-17 Zoltan Varga <[email protected]>
* Makefile.am: Avoid installing mint.pc if mint is not compiled.
2006-02-07 Chris Toshok <[email protected]>
* data/net_2_0/Makefile.am (EXTRA_DIST): add web.config
(mono_DATA): same.
* data/net_2_0/machine.config: remove the system.web section from
here.
* data/net_2_0/web.config: and add it here.
2006-02-02 Carlos Alberto Cortez <[email protected]>
* data/net_2_0/machine.config: Add FtpRequestCreator
to create new instances of System.Net.FtpWebWebRequest.
2006-02-01 Sebastien Pouliot <[email protected]>
* libmono.vcproj: Added new files to the VS.NET build.
* README.vsnet: Updated VS.NET build instructions.
2006-01-26 Chris Toshok <[email protected]>
* data/net_2_0/machine.config: ignore runtime and startup
sections.
2006-01-25 Chris Toshok <[email protected]>
* data/net_2_0/machine.config: ignore mscorlib,
system.runtime.remoting, and strongNames sections.
2006-01-25 Chris Toshok <[email protected]>
* data/net_2_0/machine.config: for system.web, add default
<authorization> section that allows everything. also, add
System.Configuration to system.web/compilation/assemblies.
2006-01-23 Chris Toshok <[email protected]>
* data/net_2_0/machine.config: add System.Configuration to the
list of assemblies in system.web/compilation.
2006-01-23 Martin Baulig <[email protected]>
* configure.in: Added configure check whether the Mono Debugger is