forked from Unity-Technologies/mono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
5310 lines (3224 loc) · 159 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
2010-04-26 Zoltan Varga <[email protected]>
* configure.in: Applied patch from Robert Nagy ([email protected]). Add
sys/param.h dependencies to a few checks.
2010-04-21 Andrés G. Aragoneses <[email protected]>
* configure.in: Propagate DISABLE_MCS_DOCS to makefiles so mono/docs
can be disabled. Fixes the build '--with-profile2=no' using
'--with-mcs-docs=no' as a workaround.
2010-04-20 Jonathan Pryor <[email protected]>
* configure.in: Check for the asm/sigcontext.h header.
2010-04-20 Jonathan Pryor <[email protected]>
* configure.in: On OpenBSD, remove duplicate -pthread options in
libmono_ldflags. Change from Robert Nagy <[email protected]>.
2010-04-20 Jonathan Pryor <[email protected]>
* configure.in: For Linux hosts, remove AC_CHECK_LIB(pthread...) in the
primary `case "$host"` block. Using AC_CHECK_LIB() here breaks *BSD,
and it's unnecessary (for !target_win32, pthreads are checked again
later in configure.in).
2010-04-19 Jonathan Pryor <[email protected]>
* configure.in: Use AC_CHECK_LIB() to check for pthread instead of
just blindly linking to -lpthread, as Android includes pthread
support within libc and doesn't provide a separate libpthread.
Android's <string.h> pulls in <malloc.h> (unlike glibc), resulting
in a build error in mono/utils/mono-codeman.c due to
`struct mallinfo` re-declaration. Define HAVE_USR_INCLUDE_MALLOC_H
if /usr/include/malloc.h is present to avoid this.
2010-04-19 Jonathan Pryor <[email protected]>
* configure.in: Add header, structure member, and function checks as
Android doesn't provide all the headers, structure members, and
functions that a "full" Linux distro includes.
2010-04-19 Zoltan Varga <[email protected]>
* configure.in: Add a --enable-minimal=normalization option to disable support
for string normalization.
2010-04-05 Zoltan Varga <[email protected]>
* configure.in: Append -lgc to libmono_ldflags if using an external libgc.
2010-04-04 Andreas Färber <[email protected]>
* configure.in: Fix typo.
Set default for with_moonlight to fix "Moon Profile:" output.
Contributed under MIT/X11 license.
2010-04-03 Zoltan Varga <[email protected]>
* configure.in: Applied some openbsd changes from Robert Nagy
2010-01-22 Zoltan Varga <[email protected]>
* configure.in: Check whenever g++ is installed, since libtool requires it
even if no c++ files will be compiled.
2010-03-26 Zoltan Varga <[email protected]>
* configure.in: Apply some openbsd changes from openbsd ports.
2010-01-22 Zoltan Varga <[email protected]>
* configure.in: Disable the solaris tar check on !solaris platforms.
2009-12-22 Geoff Norton <[email protected]>
* configure.in: Fix invalid escaping. Patch from Spina from
www.slacky.eu.
2009-12-21 Zoltan Varga <[email protected]>
* configure.in: Add an LLVM_CFLAGS automake variable.
2009-12-11 Zoltan Varga <[email protected]>
* configure.in: Applied patch from Matt McClellan ([email protected]). Add a check
for 2 parameter sched_setaffinity in older glibc versions. Fixes
#564000.
2009-11-17 Marek Habersack <[email protected]>
* runtime/Makefile.am (TEST_SUPPORT_FILES): added bin/al2 - needed
for System.Web tests.
2009-11-17 Zoltan Varga <[email protected]>
* configure.in: Add a --enable-minimal=soft-debug option.
2009-11-12 Zoltan Varga <[email protected]>
* acinclude.m4 (dolt_supported): Handle 'i686-pc-cygwin' too.
2009-11-04 Zoltan Varga <[email protected]>
* acinclude.m4 (dolt_supported): Applied patch from Kornél Pál
<[email protected]>. Enable dolt on cygwin.
2009-11-03 Zoltan Varga <[email protected]>
* configure.in: Check for netinet/in.h.
2009-11-02 Gonzalo Paniagua Javier <[email protected]>
* configure.in: add a few missing header file checks.
2009-11-01 Zoltan Varga <[email protected]>
* configure.in: Make the LLVM warning a bit more up-to-date.
* configure.in: Pass -mno-cygwin to CXX too on windows. Enable AC_PROG_CXX
since it now works on windows too.
2009-10-12 Zoltan Varga <[email protected]>
* data/Makefile.am (gdb_DATA): Install mono-gdb.py alongside the mono executable.
* data/gdb-pre7.0: New directory, containing the mono support files for
gdb versions before 7.0.
2009-09-29 Ankit Jain <[email protected]>
* mono-core.spec.in: Add Microsoft.WebApplication.targets
2009-08-29 Jonathan Pryor <[email protected]>
* man/mdoc-export-html.1: Document --with-profile, --with-version.
2009-09-08 Zoltan Varga <[email protected]>
* acinclude.m4 (dolt_supported): Enable this for mips.
2009-08-29 Jonathan Pryor <[email protected]>
* man/mdoc.5: Document the new <format/> element.
2009-08-18 Zoltan Varga <[email protected]>
* scripts/Makefile.am: Applied patch from Hib Eris ([email protected]).
Add $(SCRIPT_SUFFIX) to the name of the 'mod' tool.
2009-08-04 Miguel de Icaza <[email protected]>
* Start the split between PLATFORM_WIN32 and TARGET_WIN32.
PLATFORM_WIN32 should be used to configure the runtime while
building it. TARGET_WIN32 is used for target execution.
This is used by Mono's AOT cross compiler when running on Windows,
but targetting a different operating system. So we have to tell
those two apart.
2009-07-24 Jb Evain <[email protected]>
* scripts/Makefile.am: generate a dmcs script for the 4.0 compiler
when building the net_4_0 profile.
2009-07-24 Jb Evain <[email protected]>
* configure.in
* runtime/Makefile.am
* data/Makefile.am: create a and populate a configuration folder
for the net_4_0 profile.
2009-07-21 Jb Evain <[email protected]>
* configure.in: add a --with-monotouch option.
* runtime/Makefile.am: use it to trigger the mcs monotouch build.
2009-07-14 Zoltan Varga <[email protected]>
* configure.in: Add more libraries needed by the llvm backend.
2009-07-02 Jb Evain <[email protected]>
* scripts/Makefile.am: monolinker is now a 2.0 assembly.
2009-07-02 jonas echterhoff <[email protected]>
* configure.in: Add linker flag on Mac OS X to allow access to other
processes, needed for debugging. Enable debugging on OS X.
2009-06-21 Zoltan Varga <[email protected]>
* configure.in (TARGET_BYTE_ORDER): New define containing the byte order of
the target.
2009-06-18 Marek Habersack <[email protected]>
* data/browscap.ini: applied Mono modifications to the upstream
version. Fixes three tests failing in System.Web. Fixes bug #513965
Added ecmascriptversion, msdomversion and w3cdomversion to the IE
8.0 entry. Fixes bug #513965
2009-06-16 Raja R Harinath <[email protected]>
* configure.in (--with-profile2): Simplify slightly.
(--with-profile4, --with-moonlight): Likewise.
2009-06-15 Miguel de Icaza <[email protected]>
* configure.in: Changed the default to not build the 4.0 profile
unless explicitly enabled.
2009-06-15 Zoltan Varga <[email protected]>
* CMakeLists.txt: Add mips support.
2009-06-14 Zoltan Varga <[email protected]>
* scripts/CMakeLists.txt: New file.
* samples/CMakeLists.txt: New file, currently empty.
2009-06-12 Andreia Gaita <[email protected]>
* data/config.in: add libcups dllmap entry
2009-06-11 Zoltan Varga <[email protected]>
* configure.in: Disable dtrace support if dtrace doesn't support the
-h option.
2009-06-10 Marek Safar <[email protected]>
* runtime/Makefile.am, configure.in: Make net_4_0 profile optional.
2009-06-07 Marek Safar <[email protected]>
* runtime/Makefile.am: Enabled net_4_0 for compilation.
2009-05-27 Zoltan Varga <[email protected]>
* configure.in: Disable USE_MUNMAP on ppc to work around #504411.
2009-05-26 Zoltan Varga <[email protected]>
* CMakeLists.txt: Implement AC_OUTPUT, creation of config.make, etc.
* CMakeLists.txt: implement arm fpu detection, add vfp detection as
well.
* CMakeLists.txt: Add arm support.
2009-05-24 Miguel de Icaza <[email protected]>
* Disable mono/docs build if we disabled the mcs build.
2009-05-24 Zoltan Varga <[email protected]>
* */CMakeLists.txt: Add beginnings of a cmake based build system.
2009-05-22 Zoltan Varga <[email protected]>
* acinclude.m4 (dolt_supported): Enable dolt on sparc linux.
2009-05-17 Zoltan Varga <[email protected]>
* configure.in: Add TARGET_POWERPC/POWERPC64 defines.
2009-05-09 Miguel de Icaza <[email protected]>
* configure.in: Instead of reporting the various disabled features
in a loop, where a keyword might fail, report the actual disabled
features in the sections that handle them
2009-05-08 Zoltan Varga <[email protected]>
* acinclude.m4 (dolt_supported): Add powerpc64.
2009-05-07 Rodrigo Kumpera <[email protected]>
* runtime/Makefile.am (mcs-compileall): Pass --security=validil
to the runtime so the assemblies are not required to be verifiable.
2009-05-06 Raja R Harinath <[email protected]>
* Makefile.am (compiler-tests): Rewrite to re-build the moon
assemblies after mcs/ is built.
* runtime/Makefile.am (build_profiles) [INSTALL_2_1]: Build only
the net_2_1_raw profile.
(test_profiles): New. Mention net_2_1 profile.
(moon-do-build): New.
2009-05-05 Miguel de Icaza <[email protected]>
* configure.in: Fix the bug reported on the mailing list by
Koushik K Dutta: do not build docs when --disable-mcs-builds is
passed.
2009-05-05 Miguel de Icaza <[email protected]>
* configure.in: Reduce configure-time dependencies by using
pkg-config the way it was originally intended to be used, and not
with the incredibly lame and painful inducing pkg.m4 file.
I am on a quest to remove this gratuitous dep on pkg.m4 that is
making people's lives miserable around the globe, just because
someone can not be bothered to learn the shell if construct.
2009-04-28 Zoltan Varga <[email protected]>
* configure.in: Add an option to disable the solaris tar check.
* configure.in: Define a TARGET_<ARCH> preprocessor symbol for some
architectures.
2009-04-23 Jb Evain <[email protected]>
* scripts/Makefile.am: add a pdb2mdb script.
2009-04-22 Jeffrey Stedfast <[email protected]>
* configure.in: Check for a stable version of glib-2.0 as opposed
to an unstable development version (we don't want people
unfamiliar with glib versioning to install an unstable development
version of glib).
2009-04-13 Zoltan Varga <[email protected]>
* configure.in: Quiet 'copying selected object files' messages from
newer libtool versions as well.
* configure.in: Disable AC_PROG_CXX for now to fix the windows build.
In mono/mini:
* Makefile.am: Comment out the cpp files as f@#%$ automake complains even
if they are inside a conditional.
2009-04-03 Zoltan Varga <[email protected]>
* scripts/patch-quiet.sh: Process LTCXXCOMPILE too.
2009-04-02 Zoltan Varga <[email protected]>
* configure.in: Move the call to AC_PROG_CXX earlier and enable it again.
* configure.in: Disable the call to AC_PROG_CXX for now.
2009-04-02 Marek Habersack <[email protected]>
* data/Makefile.am: added system.web.mvc.pc{.in}
* configure.in: added data/system.web.mvc.pc to AC_OUTPUT
* data/system.web.mvc.pc.in: added
2009-04-02 Zoltan Varga <[email protected]>
* configure.in: Add an ENABLE_LLVM autoconf define.
* configure.in: Add --enable-llvm argument to enable the experimental
LLVM back end.
2009-03-31 Jb Evain <[email protected]>
* scripts: Remove smcs, which is handled by moon now.
* data: ditto.
2009-03-20 Zoltan Varga <[email protected]>
* mono/os: Remove this now empty directory.
* mono/Makefile.am (SUBDIRS): Remove 'os'.
2009-03-16 Atsushi Enomoto <[email protected]>
* scripts/Makefile.am : mono-xmltool uses 2.0.
2009-03-12 Jonathan Pryor <[email protected]>
* scripts/Makefile.am: Add sqlmetal.
2009-03-10 Zoltan Varga <[email protected]>
* README: Remove the comment about --with-moonlight being pre-alpha.
2009-03-10 Atsushi Enomoto <[email protected]>
* scripts/Makefile.am : added svcutil.
2009-02-26 Marek Habersack <[email protected]>
* data/mono.web.pc.in: added. Fixes bug #479760
* data/Makefile.am: added mono.pc{.in} wherever necessary
2009-02-07 Gonzalo Paniagua Javier <[email protected]>
* configure.in: include stdio so that NULL is defined when checking
for ifreq.
2009-02-06 Miguel De Icaza <[email protected]>
* Disable parallel marking on OSX as it hangs during collections
in the bootstrap stage of Mono.
As we find more platforms that hang, we should disable it there as
well.
2009-02-03 Miguel de Icaza <[email protected]>
* configure.in (PLATFORM_NO_SYMLINKS): New define that replaces
PLATFORM_WIN32.
2009-02-02 Rodrigo Kumpera <[email protected]>
* configure.in: Add --with-mcs-docs to make it possible to disable building of documentation under mcs.
2009-01-29 Zoltan Varga <[email protected]>
* configure.in: Remove -Wcast-align from the warning list, it leads to a lot of
useless warnings which can only be fixed by casting a pointer to (void*).
2009-01-29 Miguel de Icaza <[email protected]>
* configure.in: Add a couple of new AM conditionals for POSIX and
DARWIN, these are used to conditionally include some files in
mono/mini.
2009-01-27 Jb Evain <[email protected]>
* configure.in: bump Mono's version to 2.5 now that 2.4
has been branched.
2009-01-25 Zoltan Varga <[email protected]>
* acinclude.m4 (dolt_supported): Handle ARM as well.
2009-01-23 Zoltan Varga <[email protected]>
* configure.in: Make --enable-parallel-mark=yes the default.
2009-01-17 Zoltan Varga <[email protected]>
* configure.in: Complete the OPROFILE checks.
2009-01-16 Zoltan Varga <[email protected]>
* configure.in: Avoid error messages in the quiet code if libgc/Makefile
does not exist yet. Fixes #466814.
2009-01-09 Zoltan Varga <[email protected]>
* configure.in: Check for the existence of the gettext executables.
2008-01-08 Christian Prochnow <[email protected]>
* configure.in: Check for sys/statfs.h and sys/mount.h
2009-01-07 Geoff Norton <[email protected]>
* configure.in: Provide platform information to the mcs build tree
2009-01-06 Jb Evain <[email protected]>
* scripts/Makefile.am: don't generate a script for the now
dead mono-api-diff.
2008-12-05 Jonathan Pryor <[email protected]>
* scripts/mdassembler, scripts/monodocer, scripts/monodocs2html:
Properly quote parameters as they may contain spaces.
2008-12-05 Jonathan Pryor <[email protected]>
* man/mdoc-update.1: Document -fno-assembly-versions.
2009-01-05 Zoltan Varga <[email protected]>
* configure.in: Disable sigaltstack on freebsd as it doesn't seem to work.
2008-12-16 Marek Habersack <[email protected]>
* data/system.web.extensions.design_1.0.pc.in: added
* data/Makefile.am (EXTRA_DIST): added
system.web.extensions.design_1.0.pc.in. Also added to
pkgconfig_DATA
* configure.in: added data/system.web.extensions_1.0.pc to
AC_OUTPUT
2008-12-16 Bill Holmes <[email protected]>
* winconfig.h : Defining the SIZEOF_REGISTER variable for the MSVC builds.
Code is contributed under MIT/X11 license.
2008-12-15 Marek Habersack <[email protected]>
* data/Makefile.am (EXTRA_DIST): added
system.web.extensions_1.0.pc.in. Also added to pkgconfig_DATA
* data/system.web.extensions_1.0.pc.in: added. This file serves
the purpose of making MonoDevelop see the 1.0 version of the
System.Web.Extensions assembly in the project references
editor. This will also make legacy 2.0 ASP.NET apps not fail when
they reference the 1.0 version of the assembly in their project
files.
* configure.in: added data/system.web.extensions_1.0.pc to AC_OUTPUT
2008-12-11 Mark Mason <[email protected]>
* configure.in: introduce SIZEOF_REGISTER - usually ==SIZEOF_VOID_P, except on mips/n32
2008-12-05 Marek Habersack <[email protected]>
* configure.in: check whether round (3) and rint (3) are present
in the C library.
2008-12-05 Jonathan Pryor <[email protected]>
* man/mdoc-update.1: Document new parameters such as --exceptions.
2008-12-04 Mark Probst <[email protected]>
* configure.in: Disabling the sibling call optimization doesn't
work, so we're using -mminimal-toc.
2008-12-03 Mark Probst <[email protected]>
* configure.in: Disable sibling call optimization on PPC64 as it
seems to trip up GCC on the build bot.
2008-11-28 Atsushi Enomoto <[email protected]>
* data/mono-nunit.pc.in : add new 2.4.8 files.
2008-11-21 Jb Evain <[email protected]>
* scripts/Makefile.am: use only one mono-api-info pointing to the cecil one
which is mscorlib agnostic.
2008-11-21 Zoltan Varga <[email protected]>
* configure.in: Only enable AOT on linux. Fixes #447265.
2008-11-19 Jonathan Pryor <[email protected]>
* configure.in: Remove mono/monoburg/Makefile; fixes the build.
2008-11-14 Andreas Färber <[email protected]>
* configure.in: Add preprocessor defines for ppc(64).
Suggested by Paolo and Mark.
Contributed under MIT/X11 license.
2008-11-12 Zoltan Varga <[email protected]>
* configure.in: Add an ENABLE_AOT variable to config.make, currently only
enabled for AMD64.
2008-11-11 Zoltan Varga <[email protected]>
* configure.in: Bump version to 2.3.
Mon Nov 10 17:37:08 CET 2008 Paolo Molaro <[email protected]>
* configure.in: check for sys/user.h and struct kinfo_proc members.
2008-11-07 Bill Holmes <[email protected]>
* winconfig.h : Removing HAVE_DIRENT_H, HAVE_STDINT_H,
HAVE_VISIBILITY_HIDDEN, HAVE_ZLIB for the VC builds.
Code is contributed under MIT/X11 license.
2008-11-05 Bill Holmes <[email protected]>
* configure.in : Adding a auto configure check for dirent.h.
Code is contributed under MIT/X11 license.
2008-10-30 Jonathan Pryor <[email protected]>
* Makefile.am: Build `docs` after `runtime`, so that it can depend
upon mdoc.exe for it's operation.
2008-10-30 Jonathan Pryor <[email protected]>
* man/mdoc-assemble.1: Document //node use within .source files.
2008-10-27 Jb Evain <[email protected]>
* data/cecil.pc.in: update version.
2008-10-22 Zoltan Varga <[email protected]>
* scripts/Makefile.am: Add gacutil1 script.
2008-10-21 Atsushi Enomoto <[email protected]>
* data/dotnet35.pc.in : added sys.cm.dataannotations.dll too.
2008-10-21 Atsushi Enomoto <[email protected]>
* data/net_2_0/web.config : added new assemblies and namespaces in
pages and compilation sections.
2008-10-21 Atsushi Enomoto <[email protected]>
* data/dotnet35.pc.in : added new assemblies (dlinq, abstractions,
routing, dynamic data).
2008-10-20 Jonathan Pryor <[email protected]>
* scripts/mod.in: Remove bash-isms.
2008-10-18 Jonathan Pryor <[email protected]>
* configure.in: Generate data/monodoc.pc.
2008-10-18 Jonathan Pryor <[email protected]>
* data/Makefile.am: Add monodoc.pc to $(pkgconfig_DATA), $(DISTCLEANFILES).
2008-10-18 Jonathan Pryor <[email protected]>
* data/monodoc.pc.in: Fixup sourcesdir.
* data/Makefile.am (EXTRA_DIST): Add monodoc.pc.in.
2008-10-17 Jonathan Pryor <[email protected]>
* scripts/Makefile.am: Install scripts for mdoc-compat commands.
* scripts (svn:ignore): Ignore generated files.
* mdassembler, mdvalidater, monodocer, monodocs2html,
monodocs2slashdoc: Added; "compatibility" scripts, converting the
previous commands into mdoc commands.
2008-10-17 Jonathan Pryor <[email protected]>
* scripts/Makefile.am: Create scripts for mdoc sub-commands.
2008-10-17 Jonathan Pryor <[email protected]>
* scripts/Makefile.am: Add mod.
2008-10-16 Jonathan Pryor <[email protected]>
* scripts/Makefile.am: Move mono-shlib-cop to scripts_2_0.
2008-10-15 Jonathan Pryor <[email protected]>
* configure.in: Add checks for `struct flock`, `struct timespec`.
2008-10-14 Jonathan Pryor <[email protected]>
* data/mono-options.pcs.in: We're not installing Mono.Options.dll into
the GAC anymore, we're just concerned `pkg-config --variable=Source`
support.
2008-10-14 Jonathan Pryor <[email protected]>
* data/mono-options.pc.in: Add a Sources variable so that
`pkg-config --variable Sources mono-options` can be used to grab the
sources to Mono.Options (useful for embedding).
2008-10-13 Jonathan Pryor <[email protected]>
* configure.in: Generate data/mono-options.pc.
* data/Makefile.am: Support mono-options.pc.in and mono-options.pc.
* data/mono-options.pc.in: Added.
Mon Oct 13 11:26:19 CEST 2008 Paolo Molaro <[email protected]>
* configure.in: check for shm_open ().
2008-10-12 Zoltan Varga <[email protected]>
* configure.in: Only process Makefiles with patch-quiet.sh which have a
corresponding Makefile.in.
2008-10-11 Zoltan Varga <[email protected]>
* configure.in: Make --enable-minimal=reflection_emit turn on
--enable-minimal=reflection_emit_save too.
* README: Add docs for the option.
* configure.in: Add --enable-minimal=reflection_emit_save option.
2008-10-10 Atsushi Enomoto <[email protected]>
* data/net_2_0/web.config: add UrlRouting.axd handler (forbidden).
2008-10-08 Zoltan Varga <[email protected]>
* Makefile.am (dist-hook): Use 'net_1_1' instead of 'default'.
* runtime/Makefile.am: Rename 'default' profile to 'net_1_1'.
2008-10-07 Atsushi Enomoto <[email protected]>
* data/Makefile.am : there seems a couple more of required changes.
2008-10-07 Atsushi Enomoto <[email protected]>
* scripts/Makefile.am : one more dist fix is needed.
2008-10-07 Atsushi Enomoto <[email protected]>
* configure.in : fix missing change for previous change.
2008-10-07 Atsushi Enomoto <[email protected]>
* scripts/mono-nunit.pc.in, data/mono-nunit.pc.in:
move former to latter.
* scripts/Makefile.am : remove packaging info.
* data/Makefile.am : add mono-nunit.pc too.
2008-10-03 Rodrigo Kumpera <[email protected]>
* configure.in: Add simd intrinsics to the disable set.
2008-10-01 Jb Evain <[email protected]>
* scripts/Makefile.am: add mono-cil-strip.
2008-09-29 Zoltan Varga <[email protected]>
* scripts/patch-quiet.sh: Handle the ifs used by some versions of
automake.
2008-09-25 Luis Ortiz <[email protected]>
* configure.in: Big arrays are only supported on 64 bit systems.
Fixes #430022
2008-09-24 Zoltan Varga <[email protected]>
* configure.in: Add --enable-minimal=attach option.
2008-09-22 Raja R Harinath <[email protected]>
* scripts/patch-quiet.sh: Skip Makefiles that've already been
patched. Handle automake 1.10a.
2008-09-18 Mark Probst <[email protected]>
* docs/generic-sharing: More generic sharing porting
documentation.
2008-09-17 Raja R Harinath <[email protected]>
* Makefile.am (EXTRA_DIST): Update.
* nls.m4, progtest.m4: Really add from Gettext 0.17.
2008-09-15 Raja R Harinath <[email protected]>
* configure.in (AC_CONFIG_FILES): Put po/mcs/Makefile.in in its
own stanza.
(AC_OUTPUT): Don't list po/mcs/Makefile, it's automatically
handled by AM_PO_SUBDIRS.
2008-09-14 Miguel de Icaza <[email protected]>
* Added some infrastructure to start the translation of the
compiler error messages.
Currently the compiler does not yet use the infrastructure,
that needs a bit of work, but the PO infrastructure is in place.
2008-09-14 gettextize <[email protected]>
* Makefile.am (SUBDIRS): Add po/mcs.
(DIST_SUBDIRS): Add po/mcs.
(EXTRA_DIST): Add config.rpath.
* configure.in (AC_CONFIG_FILES): Add po/mcs/Makefile.in.
2008-09-14 gettextize <[email protected]>
* gettext.m4: New file, from gettext-0.17.
* iconv.m4: New file, from gettext-0.17.
* lib-ld.m4: New file, from gettext-0.17.
* lib-link.m4: New file, from gettext-0.17.
* lib-prefix.m4: New file, from gettext-0.17.
* nls.m4: New file, from gettext-0.17.
* po.m4: New file, from gettext-0.17.
* progtest.m4: New file, from gettext-0.17.
* Makefile.am (EXTRA_DIST): Add the new files.
2008-09-12 Zoltan Varga <[email protected]>
* scripts/patch-quiet.sh: Remove an obsolete comment. Change the Makefile so
this script is rerun if Makefile.am changes.
2008-09-11 Zoltan Varga <[email protected]>
* configure.in: Add a DISABLE_JIT automake conditional too.
* configure.in: Add a --enable-minimal=jit option to disable jit, only
allowing full-aot execution.
2008-09-10 Zoltan Varga <[email protected]>
* configure.in: Move the computation of export_ldflags after libtool has
been created.
2008-09-08 Massimiliano Mantione <[email protected]>
* configure.in: Added DISABLE_PROFILER automake conditional.
2008-08-29 Geoff Norton <[email protected]>
* configure.in: Rollup our unrolled FreeBSD support so that we properly
build and compile on FreeBSD6+. (FreeBSD5 is 2004)
2008-08-28 Geoff Norton <[email protected]>
* build-iphone.sh: iPhone lies about HAVE_MMAP as well.
2008-08-26 Geoff Norton <[email protected]>
* build-iphone.sh: Update build-iphone to not wget old inssel's, and build
out of the box with teh current SDK.
2008-08-28 Zoltan Varga <[email protected]>
* scripts/Makefile.am (scripts_2_0): Add gacutil2.
* scripts/gacutil2: New file.
2008-08-22 Jb Evain <[email protected]>
* data/wcf.pc.in
* data/Makefile.am
* configure.in: add a new wcf.pc for assemblies recently moved
from olive to mcs.
2008-08-12 Bill Holmes <[email protected]>
* winconfig.h: Updating the config file for MSVC builds to match
the config file used when compiling with gcc in Cygwin.
Contributed under MIT/X11 license.
2008-08-09 Rodrigo Kumpera <[email protected]>
* docs/generic-sharing: Some updates from an irc talk with Mark.
2008-08-06 Zoltan Varga <[email protected]>
* Makefile.am (EXTRA_DIST): Add dtrace-prelink.sh and build-mingw32.sh.
* scripts/Makefile.am (EXTRA_DIST): Add patch-quiet.sh.
2008-08-05 Marek Habersack <[email protected]>
* configure.in: use the PKG_CONFIG_PATH only when cross-compiling.
2008-08-05 Marek Habersack <[email protected]>
* configure.in: added support for cross-compilation
2008-08-05 Marek Habersack <[email protected]>
* build-mingw32.sh: added a script to build Mono for Windows on a
Linux host using mingw.
2008-08-05 Marek Habersack <[email protected]>
* scripts/Makefile.am: added support for cross-compilation,
including .bat generation for windows targets.
2008-08-05 Marek Habersack <[email protected]>
* scripts/smcs.bat.in, scripts/script.bat.in,
scripts/script_umask.bat.in: added .bat templates.
2008-08-05 Marek Habersack <[email protected]>
* runtime/Makefile.am: mingw cross-compilation support.
2008-08-05 Andreas Färber <[email protected]>
* autogen.sh: Suppress arguments warning for NOCONFIGURE.
Contributed under MIT/X11 license.
2008-08-02 Zoltan Varga <[email protected]>
* configure.in: Enable dtrace by default on platforms which support it.
2008-07-27 Zoltan Varga <[email protected]>
* scripts/patch-quiet.sh: Make the libtool --quiet flag configurable by
V=1 as well.
2008-07-24 Zoltan Varga <[email protected]>
* configure.in: Patch libtool to avoid the
'copying selected object files ...' messages.
2008-07-24 Rodrigo Kumpera <[email protected]>
* configure.in: Change USED_GC_NAME to show if parallel mark is used.
This is shown in mono --version.
2008-07-22 Mark Probst <[email protected]>
* configure.in: New configure option (--with-malloc-mempools) to
make mempools use malloc for every single allocation, which makes
it easier to use debugging/profiling tools like Valgrind.
2008-07-21 Zoltan Varga <[email protected]>
* configure.in: Invoke patch-quiet.sh using AC_CONFIG_COMMANDS so it
runs during a reconfigure too.
2008-07-13 Zoltan Varga <[email protected]>
* docs/aot-compiler.txt: Update docs.
2008-07-09 Zoltan Varga <[email protected]>
* scripts/patch-quiet.sh: Another try to fix this on osx.
* scripts/patch-quiet.sh: Use \\t to encode \t.
* scripts/patch-quiet.sh: Remove a stray \t.
2008-07-10 Raja R Harinath <[email protected]>
* configure.in (enable_quiet_build): Work better on a non-srcdir build.
(mono_cv_sizeof_sunpath): Rename cacheval from 'cv_mono_sizeof_sunpath'
to placate autoconf.
2008-07-07 Zoltan Varga <[email protected]>
* configure.in: Make the patching done by --enable-quiet quiet.
2008-07-07 Zoltan Varga <[email protected]>
* scripts/patch-quiet.sh: Make this more precise.
2008-07-06 Zoltan Varga <[email protected]>
* configure.in: Add an --enable-quiet-build option.
* Makefile.am (patch-quiet): New target.
* acinclude.m4: Handle --quiet.
2008-07-05 Mark Probst <[email protected]>
* docs/generic-sharing: Docs about porting generic sharing.
2008-07-04 Zoltan Varga <[email protected]>
* scripts/patch-quiet.sh (src): Fix verbose mode.
2008-07-03 Mark Probst <[email protected]>
* docs/generic-sharing: New documentation file about generic code
sharing. Currently contains information about examining stack
frames of generic shared code.
2008-07-03 Zoltan Varga <[email protected]>
* scripts/patch-quiet.sh: New helper script.
2008-07-02 Gert Driesen <[email protected]>
* data/net_1_1/machine.config: Ignore system.windows.forms section.
* data/net_2_0/machine.config: Define system.windows.forms section.
2008-06-30 Alp Toker <[email protected]>
* configure.in:
* acinclude.m4: Remove concatenation syntax from doltlibtool to support
old versions of bash and re-enable dolt.
2008-06-26 Alp Toker <[email protected]>
* acinclude.m4: Prospective dolt fix for the build bot. Fix syntax to work
with older bash versions.
2008-06-26 Alp Toker <[email protected]>
* acinclude.m4: Update dolt to the latest git version 5e9eef10. (The one we
had wasn't in fact the latest version and had a known bug.)
2008-06-25 Zoltan Varga <[email protected]>