Welcome to mirror list, hosted at ThFree Co, Russian Federation.

download « doc - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 75da907db064c3c1adfe50b58192ff080c3e7a74 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
* Software Availability

	The Virtual Execution System is available in package `mono'.
	Currently this contains a metadata library and the
	disassembler.  Please refer to our <a
	href="runtime.html">Runtime</a> description for more details
	on this part of the project.

	The software is also available on the `Mono' channel in <a href="http://www.ximian.com/products/redcarpet/">Red Carpet</a>.

	Some useful links: <a
	href="http://www.go-mono.org/mono-beginning.html">Resources/Beginning
	section</a>, the <a
	href="http://www.go-mono.org/faq.html">FAQ</a>.

	<table>
	  <tbody>
 	  <tr bgcolor="#DDDDDD">
	    <td>
	      <b>Release 0.24</b><br>
	      <a href="archive/mono-0.24.html">Release notes</a><br>
	       May 6, 2003
	    </td>
	    <td>
	      <table cellspacing="1" cellpadding="3">
		<tr bgcolor="#BBBBBB">
		  <td>
		    <b>Source Code</b>
	          </td>
		  <td>
	 	    <ul>
	 	      <li><a href="archive/mcs-0.24.tar.gz">Mono Class Libraries and C# Compiler.</a>
	              <li><a href="archive/mono-0.24.tar.gz">Mono Runtime</a>
		      <li><a href="archive/gc6.1.tar.gz">Boehm GC 6.1</a>
 		      <li><a href="archive/xsp-0.4.tar.gz">XSP web server (0.4)</a>
		      <li><a href="archive/mono-debugger-0.2.2.tar.gz">Mono Debugger 0.2.2</a>
		      <li><a href="archive/monodoc-0.4.tar.gz">MonoDoc 0.4</a>
		      <li><a href="archive/gtk-sharp-0.9.tar.gz">Gtk# 0.9</a>
	            </ul>
		  </td>
	        </tr>
	        <tr bgcolor="#BBBBBB">
		  <td>
		     <b>Source RPMs</b><br>
		     (No RPMS for XSP).
	          </td>
		  <td>
		    <ul>
			<li><a href="archive/libgc-6.1-1.src.rpm">libgc-6.1-1.src.rpm</a>
			<li><a href="archive/mono-0.24-1.src.rpm">mono-0.24-1.src.rpm</a>
		    </ul>
		  </td>
	        </tr>
		<tr>
		 <td></td>
	 	</tr>

		<tr>
                  <td bgcolor="#999999">
                    <img src="images/redhat-36.gif"><b>Red Hat 9.0/x86</b>
                    <ul>
                        <li><a href="archive/redhat-90-i386/libgc-6.1-1.i386.rpm">libgc-6.1-1.i386.rpm</a>
                        <li><a href="archive/redhat-90-i386/libgc-devel-6.1-1.i386.rpm">libgc-devel-6.1-1.i386.rpm</a>
                        <li><a href="archive/redhat-90-i386/mono-0.24-1.i386.rpm">mono-0.24-1.i386.rpm</a>
                        <li><a href="archive/redhat-90-i386/mono-devel-0.24-1.i386.rpm">mono-devel-0.24-1.i386.rpm</a>
                        <li><a href="archive/redhat-90-i386/mono-debuginfo-0.24-1.i386.rpm">mono-debuginfo-0.24-1.i386.rpm</a>
		 	<br>
			<li><a href="archive/redhat-90-i386/gtk-sharp-0.9-1.i386.rpm">gtk-sharp-0.9-1.i386.rpm</a>
			<li><a href="archive/redhat-90-i386/gtk-sharp-debuginfo-0.9-1.i386.rpm">gtk-sharp-debuginfo-0.9-1.i386.rpm</a>
			<li><a href="archive/redhat-90-i386/monodoc-0.4-1.i386.rpm">monodoc-0.4-1.i386.rpm</a>
                    </ul>
                  </td>
                  <td bgcolor="#999999">
                    <img src="images/redhat-36.gif"><b>Red Hat 8.0/x86</b>
                    <ul>
                        <li><a href="archive/redhat-80-i386/libgc-6.1-1.i386.rpm">libgc-6.1-1.i386.rpm</a>
                        <li><a href="archive/redhat-80-i386/libgc-devel-6.1-1.i386.rpm">libgc-devel-6.1-1.i386.rpm</a>
                        <li><a href="archive/redhat-80-i386/mono-0.24-2.i386.rpm">mono-0.24-2.i386.rpm</a>
                        <li><a href="archive/redhat-80-i386/mono-devel-0.24-2.i386.rpm">mono-devel-0.24-2.i386.rpm</a>
		 	<br>
			<li><a href="archive/redhat-80-i386/gtk-sharp-0.9-1.i386.rpm">gtk-sharp-0.9-1.i386.rpm</a>
			<li><a href="archive/redhat-80-i386/monodoc-0.4-1.i386.rpm">monodoc-0.4-1.i386.rpm</a>
                    </ul>
                  </td>
		</tr>

  		<tr> 
                  <td bgcolor="#999999">
                    <img src="images/debian-36.gif"><b>Debian</b>
                    <ul>
                        <li><a href="http://www.debianplanet.com/mono/">Debian Packages here.</a>
                    </ul>
                  </td>
  		  <td bgcolor="#999999">
 		    <img src="images/windows-36.gif"><b>Windows Setup Wizard (XP, 2000, NT)</b> 
 		    <ul>
 	              <li><a href="archive/mono-0.24-win32-1.exe">Setup program.</a>
 	            </ul>
  	          </td>
  		</tr>

		<tr>
		  <td bgcolor="#999999">
		    <img src="images/redhat-36.gif"><b>Red Hat 7.3/x86</b>
                    <ul>
			<li><a href="archive/redhat-73-i386/libgc-6.1-1.i386.rpm">libgc-6.1-1.i386.rpm</a>
			<li><a href="archive/redhat-73-i386/libgc-devel-6.1-1.i386.rpm">libgc-devel-6.1-1.i386.rpm</a>
			<li><a href="archive/redhat-73-i386/mono-0.24-1.i386.rpm">mono-0.24-1.i386.rpm</a>
			<li><a href="archive/redhat-73-i386/mono-devel-0.24-1.i386.rpm">mono-devel-0.24-1.i386.rpm</a>
		    </ul>
		  </td>
		  <td bgcolor="#999999">
		    <img src="images/mandrake-36.gif"><b>Mandrake 8.2/x86</b>
                    <ul>
			<li><a href="archive/mandrake-82-i386/libgc-6.1-1.i586.rpm">libgc-6.1-1.i586.rpm</a>
			<li><a href="archive/mandrake-82-i386/libgc-devel-6.1-1.i586.rpm">libgc-devel-6.1-1.i586.rpm</a>
			<li><a href="archive/mandrake-82-i386/mono-0.24-1.i586.rpm">mono-0.24-1.i586.rpm</a>
			<li><a href="archive/mandrake-82-i386/mono-devel-0.24-1.i586.rpm">mono-devel-0.24-1.i586.rpm</a>
		    </ul>
		  </td>
		</tr>

		<tr>
 		  <td bgcolor="#999999"> 
		     <img src="images/suse-36.gif"><b>SuSE 8.0/x86</b> 
                     <ul> 
 			<li><a href="archive/suse-80-i386/libgc-6.1-1.i386.rpm">libgc-6.1-1.i386.rpm</a> 
 			<li><a href="archive/suse-80-i386/libgc-devel-6.1-1.i386.rpm">libgc-devel-6.1-1.i386.rpm</a> 
 			<li><a href="archive/suse-80-i386/mono-0.24-1.i386.rpm">mono-0.24-1.i386.rpm</a> 
 			<li><a href="archive/suse-80-i386/mono-devel-0.24-1.i386.rpm">mono-devel-0.24-1.i386.rpm</a> 
 		    </ul>
 	          </td>
	          <td bgcolor="#999999">
		     <b>Linux s/390</b> 
		     <ul>
                        <li><a href="archive/s390/libgc-6.1-1.s390.rpm">libgc-6.1-1.s390.rpm</a>
                        <li><a href="archive/s390/libgc-devel-6.1-1.s390.rpm">libgc-devel-6.1-1.s390.rpm</a>
                        <li><a href="archive/s390/mono-0.24-1.s390.rpm">mono-0.24-1.s390.rpm</a>
                        <li><a href="archive/s390/mono-devel-0.24-1.s390.rpm">mono-devel-0.24-1.s390.rpm</a>
		     </ul>
	          </td>
	        </tr>

	      </table>
	    </td>
	  </tr>
	  <tr>
	    <tr bgcolor="#CCCCC">
	    <td>
	      <b>Regression Tests</b><br>
	    </td>
	    <td>
		You can get binaries for the Mono Regression Test
		Suite <a href="archive/mono-tests.tar.gz">here</a>
	    </td>
	  </tr>
	  </tr>
	  </tbody>
	</table>

* Older Releases:

	We provide binaries for older releases until we have packages for the new release.


	<table>
	  <tbody>
 	  <tr bgcolor="#DDDDDD">
	    <td>
	      <b>Release 0.23</b><br>
	      <a href="archive/mono-0.23">Release notes</a><br>
	       March 5, 2003
	    </td>
	    <td>
	      <table cellspacing="1" cellpadding="3">
		<tr bgcolor="#BBBBBB">
		  <td>
		    <b>Source Code</b>
	          </td>
		  <td>
	 	    <ul>
	 	      <li><a href="archive/mcs-0.23.tar.gz">Mono Class Libraries and C# Compiler.</a>
	              <li><a href="archive/mono-0.23.tar.gz">Mono Runtime</a>
		      <li><a href="archive/gc6.1.tar.gz">Boehm GC 6.1</a>
 		      <li><a href="archive/xsp-0.3.tar.gz">XSP web server (0.3)</a>
		      <li><a href="archive/mono-debugger-0.2.2.tar.gz">Mono Debugger 0.2.2</a>
	            </ul>
		  </td>
	        </tr>
	        <tr bgcolor="#BBBBBB">
		  <td>
		     <b>Source RPMs</b><br>
		     (No RPMS for XSP).
	          </td>
		  <td>
		    <ul>
			<li><a href="archive/libgc-6.1-1.src.rpm">libgc-6.1-1.src.rpm</a>
			<li><a href="archive/mono-0.23-1.src.rpm">mono-0.23-1.src.rpm</a>
		    </ul>
		  </td>
	        </tr>
		<tr>
		 <td></td>
	 	</tr>
		<tr>
		  <td bgcolor="#999999">
		    <b>Red Hat 7.3/x86</b>
                    <ul>
			<li><a href="archive/redhat-73-i386/libgc-6.1-1.i386.rpm">libgc-6.1-1.i386.rpm</a>
			<li><a href="archive/redhat-73-i386/libgc-devel-6.1-1.i386.rpm">libgc-devel-6.1-1.i386.rpm</a>
			<li><a href="archive/redhat-73-i386/mono-0.23-1.i386.rpm">mono-0.23-1.i386.rpm</a>
			<li><a href="archive/redhat-73-i386/mono-devel-0.23-1.i386.rpm">mono-devel-0.23-1.i386.rpm</a>
		    </ul>
		  </td>
		  <td bgcolor="#999999">
		    <b>Red Hat 7.2/x86</b>
                    <ul>
			<li><a href="archive/redhat-72-i386/libgc-6.1-1.i386.rpm">libgc-6.1-1.i386.rpm</a>
			<li><a href="archive/redhat-72-i386/libgc-devel-6.1-1.i386.rpm">libgc-devel-6.1-1.i386.rpm</a>
			<li><a href="archive/redhat-72-i386/mono-0.23-1.i386.rpm">mono-0.23-1.i386.rpm</a>
			<li><a href="archive/redhat-72-i386/mono-devel-0.23-1.i386.rpm">mono-devel-0.23-1.i386.rpm</a>
		    </ul>
		  </td>
		</tr>
		<tr>
		  <td bgcolor="#999999">
		    <b>Red Hat 7.1/x86</b>
                    <ul>
			<li><a href="archive/redhat-71-i386/libgc-6.1-1.i386.rpm">libgc-6.1-1.i386.rpm</a>
			<li><a href="archive/redhat-71-i386/libgc-devel-6.1-1.i386.rpm">libgc-devel-6.1-1.i386.rpm</a>
			<li><a href="archive/redhat-71-i386/mono-0.23-1.i386.rpm">mono-0.23-1.i386.rpm</a>
			<li><a href="archive/redhat-71-i386/mono-devel-0.23-1.i386.rpm">mono-devel-0.23-1.i386.rpm</a>
		    </ul>
		  </td>
		  <td bgcolor="#999999">
		    <b>Mandrake 8.2/x86</b>
                    <ul>
			<li><a href="archive/mandrake-82-i386/libgc-6.1-1.i586.rpm">libgc-6.1-1.i586.rpm</a>
			<li><a href="archive/mandrake-82-i386/libgc-devel-6.1-1.i586.rpm">libgc-devel-6.1-1.i586.rpm</a>
			<li><a href="archive/mandrake-82-i386/mono-0.23-1.i586.rpm">mono-0.23-1.i586.rpm</a>
			<li><a href="archive/mandrake-82-i386/mono-devel-0.23-1.i586.rpm">mono-devel-0.23-1.i586.rpm</a>
		    </ul>
		  </td>
	 	</tr>
		<tr>
 		  <td bgcolor="#999999"> 
 		    <b>SuSE 8.0/x86</b> 
                     <ul> 
 			<li><a href="archive/suse-80-i386/libgc-6.1-1.i386.rpm">libgc-6.1-1.i386.rpm</a> 
 			<li><a href="archive/suse-80-i386/libgc-devel-6.1-1.i386.rpm">libgc-devel-6.1-1.i386.rpm</a> 
 			<li><a href="archive/suse-80-i386/mono-0.23-1.i386.rpm">mono-0.23-1.i386.rpm</a> 
 			<li><a href="archive/suse-80-i386/mono-devel-0.23-1.i386.rpm">mono-devel-0.23-1.i386.rpm</a> 
 		    </ul>
 	          </td>
                  <td bgcolor="#999999">
                    <b>Red Hat 8.0/x86</b>
                    <ul>
                        <li><a href="archive/redhat-80-i386/libgc-6.1-1.i386.rpm">libgc-6.1-1.i386.rpm</a>
                        <li><a href="archive/redhat-80-i386/libgc-devel-6.1-1.i386.rpm">libgc-devel-6.1-1.i386.rpm</a>
                        <li><a href="archive/redhat-80-i386/mono-0.23-1.i386.rpm">mono-0.23-1.i386.rpm</a>
                        <li><a href="archive/redhat-80-i386/mono-devel-0.23-1.i386.rpm">mono-devel-0.23-1.i386.rpm</a>
                    </ul>
                  </td>
	        </tr>
  		<tr> 
  		  <td bgcolor="#999999">
 		    <b>Windows Setup Wizard (NT/2000/XP)</b>
 		    <ul>
 	              <li><a href="archive/mono-0.23-win32-2.exe">Mono-Setup</a>
 	            </ul>
  	          </td>
                  <td bgcolor="#999999">
                    <b>Linux S/390</b>
                    <ul>
                        <li><a href="archive/s390/libgc-6.1-1.s390.rpm">libgc-6.1-1.s390.rpm</a>
                        <li><a href="archive/s390/libgc-devel-6.1-1.s390.rpm">libgc-devel-6.1-1.s390.rpm</a>
                        <li><a href="archive/s390/mono-0.23-1.s390.rpm">mono-0.23-1.s390.rpm</a>
                        <li><a href="archive/s390/mono-devel-0.23-1.s390.rpm">mono-devel-0.23-1.s390.rpm</a>
                    </ul>
                  </td>
  		</tr>
	      </table>
	    </td>
	  </tr>
	  <tr>
	    <tr bgcolor="#CCCCC">
	    <td>
	      <b>Regression Tests</b><br>
	    </td>
	    <td>
		You can get binaries for the Mono Regression Test
		Suite <a href="archive/mono-tests.tar.gz">here</a>
	    </td>
	  </tr>
	  </tr>
	  </tbody>
	</table>



	<table>
	  <tbody>
 	  <tr bgcolor="#DDDDDD">
	    <td>
	      <b>Release 0.22</b><br>
	      <a href="archive/mono-0.22">Release notes</a><br>
	       March 5, 2003
	    </td>
	    <td>
	      <table cellspacing="1" cellpadding="3">
		<tr bgcolor="#BBBBBB">
		  <td>
		    <b>Source Code</b>
	          </td>
		  <td>
	 	    <ul>
	 	      <li><a href="archive/mcs-0.22.tar.gz">Mono Class Libraries and C# Compiler.</a>
	              <li><a href="archive/mono-0.22.tar.gz">Mono Runtime</a>
		      <li><a href="archive/gc6.1.tar.gz">Boehm GC 6.1</a>
 		      <li><a href="archive/xsp-0.3.tar.gz">XSP web server (0.3)</a>
	            </ul>
		  </td>
	        </tr>
	        <tr bgcolor="#BBBBBB">
		  <td>
		     <b>Source RPMs</b><br>
		     (No RPMS for XSP).
	          </td>
		  <td>
		    <ul>
			<li><a href="archive/libgc-6.1-1.src.rpm">libgc-6.1-1.src.rpm</a>
			<li><a href="archive/mono-0.22-1.src.rpm">mono-0.22-1.src.rpm</a>
		    </ul>
		  </td>
	        </tr>
		<tr>
		 <td></td>
	 	</tr>
  		<tr> 
  		  <td bgcolor="#999999">
 		    <b>Windows Setup Wizard (NT/2000/XP)</b>
 		    <ul>
 	              <li><a href="archive/mono-0.22-win32-1.exe">Mono-Setup</a>
 	            </ul>
  	          </td>
  		</tr>
	      </table>
	    </td>
	  </tr>
	  <tr>
	    <tr bgcolor="#CCCCC">
	    <td>
	      <b>Regression Tests</b><br>
	    </td>
	    <td>
		You can get binaries for the Mono Regression Test
		Suite <a href="archive/mono-tests.tar.gz">here</a>
	    </td>
	  </tr>
	  </tr>
	  </tbody>
	</table>

	<table>
	  <tbody>
	  <tr bgcolor="#DDDDDD">
	    <td>
	      <b>Release 0.21</b><br>
	      <a href="archive/mono-0.21">Release notes</a><br>
	      Feb 27th, 2003
	    </td>
	    <td>
	      <table cellspacing="1" cellpadding="3">
		<tr bgcolor="#BBBBBB">
		  <td>
		    <b>Source Code</b>
	          </td>
		  <td>
	 	    <ul>
	 	      <li><a href="archive/mcs-0.21.tar.gz">Mono Class Libraries and C# Compiler.</a>
	              <li><a href="archive/mono-0.21.tar.gz">Mono Runtime</a>
		      <li><a href="archive/gc6.1.tar.gz">Boehm GC 6.1</a>
		      <li><a href="archive/xsp-0.3.tar.gz">XSP web server (0.3)</a>
	            </ul>
		  </td>
	        </tr>
	        <tr bgcolor="#BBBBBB">
		  <td>
		     <b>Source RPMs</b><br>
		     (No RPMS for XSP).
	          </td>
		  <td>
		    <ul>
			<li><a href="archive/libgc-6.1-1.src.rpm">libgc-6.1-1.src.rpm</a>
			<li><a href="archive/mono-0.21-1.src.rpm">mono-0.21-1.src.rpm</a>
		    </ul>
		  </td>
	        </tr>
		<tr>
		 <td></td>
	 	</tr>
		<tr>
		  <td bgcolor="#999999">
		    <b>Debian packages</b>
		    <ul>
	              <li><a href="http://www.atoker.com/mono/">Alp's web site</a>
	            </ul>
	          </td>
		</tr>
	      </table>
	    </td>
	  </tr>
	  <tr>
	    <tr bgcolor="#CCCCC">
	    <td>
	      <b>Regression Tests</b><br>
	    </td>
	    <td>
		You can get binaries for the Mono Regression Test
		Suite <a href="archive/mono-tests.tar.gz">here</a>
	    </td>
	  </tr>
	  </tr>
	  </tbody>
	</table>

	<table>
	  <tbody>
	  <tr bgcolor="#DDDDDD">
	    <td>
	      <b>Release 0.20</b><br>
	      <a href="archive/mono-0.20">Release notes</a><br>
	      Feb 20th, 2003
	    </td>
	    <td>
	      <table cellspacing="1" cellpadding="3">
		<tr bgcolor="#BBBBBB">
		  <td>
		    <b>Source Code</b>
	          </td>
		  <td>
	 	    <ul>
	 	      <li><a href="archive/mcs-0.20.tar.gz">Mono Class Libraries and C# Compiler.</a>
	              <li><a href="archive/mono-0.20.tar.gz">Mono Runtime</a>
		      <li><a href="archive/gc6.1.tar.gz">Boehm GC 6.1</a>
		      <li><a href="archive/xsp-0.3.tar.gz">XSP web server (0.3)</a>
	            </ul>
		  </td>
	        </tr>
	        <tr bgcolor="#BBBBBB">
		  <td>
		     <b>Source RPMs</b><br>
		     (No RPMS for XSP).
	          </td>
		  <td>
		    <ul>
			<li><a href="archive/libgc-6.1-1.src.rpm">libgc-6.1-1.src.rpm</a>
			<li><a href="archive/mono-0.20-1.src.rpm">mono-0.20-1.src.rpm</a>
		    </ul>
		  </td>
	        </tr>
		<tr>
		 <td></td>
	 	</tr>
		<tr>
		  <td bgcolor="#999999">
		    <b>Red Hat 8.0/x86</b>
                <ul>
			<li><a href="archive/redhat-80-i386/libgc-6.1-1.i386.rpm">libgc-6.1-1.i386.rpm</a>
			<li><a href="archive/redhat-80-i386/libgc-devel-6.1-1.i386.rpm">libgc-devel-6.1-1.i386.rpm</a>
			<li><a href="archive/redhat-80-i386/mono-0.20-1.i386.rpm">mono-0.20-1.i386.rpm</a>
			<li><a href="archive/redhat-80-i386/mono-devel-0.20-1.i386.rpm">mono-devel-0.20-1.i386.rpm</a>
		    </ul>
	          </td>
		  <td bgcolor="#999999">
		    <b>Debian packages</b>
		    <ul>
	              <li><a href="http://www.atoker.com/mono/">Alp's web site</a>
	            </ul>
	          </td>
	        </tr>
		<tr>
		  <td bgcolor="#999999">
		    <b>Windows Setup Wizard (NT/2000/XP)</b>
		    <ul>
	              <li><a href="archive/mono-0.20-stable-win32-2.exe">Mono-Setup</a>
	            </ul>
	          </td>
		</tr>
	      </table>
	    </td>
	  </tr>
	  <tr>
	    <tr bgcolor="#CCCCC">
	    <td>
	      <b>Regression Tests</b><br>
	    </td>
	    <td>
		You can get binaries for the Mono Regression Test
		Suite <a href="archive/mono-tests.tar.gz">here</a>
	    </td>
	  </tr>
	  </tr>
	  </tbody>
	</table>

	<table>
	  <tbody>
	  <tr bgcolor="#DDDDDD">
	    <td>
	      <b>Release 0.19</b><br>
	      <a href="archive/mono-0.19">Release notes</a><br>
	      Jan 20th, 2003
	    </td>
	    <td>
	      <table cellspacing="1" cellpadding="3">
		<tr bgcolor="#BBBBBB">
		  <td>
		    <b>Source Code</b>
	          </td>
		  <td>
	 	    <ul>
	 	      <li><a href="archive/mcs-0.19.tar.gz">Mono Class Libraries and C# Compiler.</a>
	              <li><a href="archive/mono-0.19.tar.gz">Mono Runtime</a>
	            </ul>
		  </td>
	        </tr>
	        <tr bgcolor="#BBBBBB">
		  <td>
		     <b>Source RPMs</b><br>
		     (No RPMS for XSP).
	          </td>
		  <td>
		    <ul>
			<li><a href="archive/libgc-6.1-1.src.rpm">libgc-6.1-1.src.rpm</a>
			<li><a href="archive/mono-0.19-1.src.rpm">mono-0.19-1.src.rpm</a>
		    </ul>
		  </td>
	        </tr>
		<tr>
		 <td></td>
	 	</tr>
	      </table>
	    </td>
	  </tr>
	  </tbody>
	</table>

	<table>
	  <tbody>
	  <tr bgcolor="#DDDDDD">
	    <td>
	      <b>Release 0.18</b><br>
	      <a href="archive/mono-0.18">Release notes</a><br>
	      Jan 12th, 2003
	    </td>
	    <td>
	      <table cellspacing="1" cellpadding="3">
		<tr bgcolor="#BBBBBB">
		  <td>
		    <b>Source Code</b>
	          </td>
		  <td>
	 	    <ul>
	 	      <li><a href="archive/mcs-0.18.tar.gz">Mono Class Libraries and C# Compiler.</a>
	              <li><a href="archive/mono-0.18.tar.gz">Mono Runtime</a>
		      <li><a href="archive/gc6.1.tar.gz">Boehm GC 6.1</a>
		      <li><a href="archive/xsp-0.2.tar.gz">XSP web server</a> <b><font color="#dd0000">New!</font></b> 
	            </ul>
		  </td>
	        </tr>
	        <tr bgcolor="#BBBBBB">
		  <td>
		     <b>Source RPMs</b><br>
		     (No RPMS for XSP).
	          </td>
		  <td>
		    <ul>
			<li><a href="archive/libgc-6.1-1.src.rpm">libgc-6.1-1.src.rpm</a>
			<li><a href="archive/mono-0.18-1.src.rpm">mono-0.18-1.src.rpm</a>
		    </ul>
		  </td>
	        </tr>
		<tr>
		 <td></td>
	 	</tr>
	      </table>
	    </td>
	  </tr>
	  </tbody>
	</table>

	<table>
	  <tbody>
	  <tr bgcolor="#DDDDDD">
	    <td>
	      <b>Release 0.17</b><br>
	      <a href="archive/mono-0.17">Release notes</a><br>
	      Dec 9th, 2002.
	    </td>
	    <td>
	      <table cellspacing="1" cellpadding="3">
		<tr bgcolor="#BBBBBB">
		  <td>
		    <b>Source Code</b>
	          </td>
		  <td>
	 	    <ul>
	 	      <li><a href="archive/mcs-0.17.tar.gz">Mono Class Libraries and C# Compiler.</a>
	              <li><a href="archive/mono-0.17.tar.gz">Mono Runtime</a>
		      <li><a href="archive/gc6.1.tar.gz">Boehm GC 6.1</a>
	            </ul>
		  </td>
	        </tr>
	        <tr bgcolor="#BBBBBB">
		  <td>
		     <b>Source RPMs</b><br>
		     (No RPMS for XSP).
	          </td>
		  <td>
		    <ul>
			<li><a href="archive/libgc-6.1-1.src.rpm">libgc-6.1-1.src.rpm</a>
			<li><a href="archive/mono-0.17-2.src.rpm">mono-0.17-2.src.rpm</a>
		    </ul>
		  </td>
	        </tr>
		<tr>
		  <td bgcolor="#999999">
		    <b>Windows Setup Wizard (NT/2000/XP)</b>
		    <ul>
	              <li><a href="archive/mono-0.17-stable.exe">Mono-Setup</a>
	            </ul>
	          </td>
		  <td bgcolor="#999999">
		    <b>Debian packages</b>
		    <ul>
	              <li><a href="http://www.atoker.com/mono/">Alp's web site</a>
	            </ul>
	          </td>
		</tr>
	      </table>
	    </td>
	  </tr>
	  </tr>
	  </tbody>
	</table>

	<table>
	  <tbody>
	  <tr bgcolor="#DDDDDD">
	    <td>
	      <b>Release 0.16</b><br>
	      <a href="archive/mono-0.16">Release notes</a><br>
	      Oct 1st, 2002.
	    </td>
	    <td>
	      <table cellspacing="1" cellpadding="3">
		<tr bgcolor="#BBBBBB">
		  <td>
		    <b>Source Code</b>
	          </td>
		  <td>
	 	    <ul>
	 	      <li><a href="archive/mcs-0.16.tar.gz">Mono Class Libraries and C# Compiler.</a>
	              <li><a href="archive/mono-0.16.tar.gz">Mono Runtime</a>
		      <li><a href="archive/gc6.1.tar.gz">Boehm GC 6.1</a>
	            </ul>
		  </td>
	        </tr>
	        <tr bgcolor="#BBBBBB">
		  <td>
		     <b>Source RPMs</b>
	          </td>
		  <td>
		    <ul>
			<li><a href="archive/libgc-6.1-1.src.rpm">libgc-6.1-1.src.rpm</a>
			<li><a href="archive/mono-0.16-1.src.rpm">mono-0.16-1.src.rpm</a>
		    </ul>
		  </td>
	        </tr>
		<tr>
		 <td></td>
	 	</tr>
		<tr>
		  <td bgcolor="#999999">
		    <b>Linux s390</b>
                <ul>
			<li><a href="archive/s390/glib2-2.0.6-13.s390.rpm">glib2-2.0.6-13.s390.rpm</a>
			<li><a href="archive/s390/glib2-devel-2.0.6-13.s390.rpm">glib2-devel-2.0.6-13.s390.rpm</a>
			<li><a href="archive/s390/libgc-6.1alpha5-1.s390.rpm">libgc-6.1alpha5-1.s390.rpm</a>
			<li><a href="archive/s390/libgc-devel-6.1alpha5-1.s390.rpm">libgc-devel-6.1alpha5-1.s390.rpm</a>
			<li><a href="archive/s390/mono-0.16-1.s390.rpm">mono-0.16-1.s390.rpm</a>
			<li><a href="archive/s390/mono-devel-0.16-1.s390.rpm">mono-devel-0.16-1.s390.rpm</a>
		    </ul>
	          </td>
		</tr>
	      </table>
	    </td>
	  </tr>
	  <tr>
	  </tr>
	  </tr>
	  </tbody>
	</table>

	<table>
	  <tbody>
	  <tr bgcolor="#DDDDDD">
	    <td>
	      <b>Release 0.15</b><br>
	      <a href="archive/mono-0.15">Release notes</a><br>
	      Aug 23rd, 2002.
	    </td>
	    <td>
	      <table cellspacing="1" cellpadding="3">
		<tr bgcolor="#BBBBBB">
		  <td>
		    <b>Source Code</b>
	          </td>
		  <td>
	 	    <ul>
	 	      <li><a href="archive/mcs-0.15.tar.gz">Mono Class Libraries and C# Compiler.</a>
	              <li><a href="archive/mono-0.15.tar.gz">Mono Runtime</a>
		      <li><a href="archive/gc6.1alpha5.tar.gz">Boehm GC 6.1alpha5</a>
	            </ul>
		  </td>
	        </tr>
	        <tr bgcolor="#BBBBBB">
		  <td>
		     <b>Source RPMs</b>
	          </td>
		  <td>
		    <ul>
			<li><a href="archive/libgc-6.1alpha5-1.src.rpm">libgc-6.1alpha5-1.src.rpm</a>
			<li><a href="archive/mono-0.15-1.src.rpm">mono-0.15-1.src.rpm</a>
		    </ul>
		  </td>
	        </tr>
		<tr>
		 <td></td>
	 	</tr>
		
		<tr bgcolor="#999999">
		  <td>
		    <b>Windows (win95 friendly)</b>
		    <ul>
	              <li><a href="archive/mono-w32-Aug_28_2002.zip">Mono-w32</a>
	            </ul>
		  </td>
		  <td bgcolor="#999999">
		    <b>Red Hat null-8.0/x86</b>
                <ul>
			<li><a href="archive/redhat-null-i386/libgc-6.1alpha5-1.i386.rpm">libgc-6.1alpha5-1.i386.rpm</a>
			<li><a href="archive/redhat-null-i386/libgc-devel-6.1alpha5-1.i386.rpm">libgc-devel-6.1alpha5-1.i386.rpm</a>
			<li><a href="archive/redhat-null-i386/mono-0.15-1.i386.rpm">mono-0.15-1.i386.rpm</a>
			<li><a href="archive/redhat-null-i386/mono-devel-0.15-1.i386.rpm">mono-devel-0.15-1.i386.rpm</a>
		    </ul>
	          </td>
	        </tr>
	      </table>
	    </td>
	  </tr>
	  </tbody>
	</table>

* Binaries for other platforms.

	Already daily volunteer's made binaries:

	<ul>
		* <a href="http://www.debianplanet.org/mono/">DebianPlanet</a>
		* <a href="http://www.superin.formativ.net/mono/mono.htm">Windows</a> (works without cygwin!)
	</ul>

* Snapshots

<a name="snapshots">

	<a href="http://www.go-mono.com/snapshots">Nightly snapshots</a> of 
	the CVS repository are made every day at 10pm EST (Boston
	Time).  These are not guaranteed to build, they are just a
	snapshot of the tree.

	The <a href="anoncvs.html">anoncvs</a> mirrors provided by
	Hispalinux are updated every six hours.

* Compiling the code

	There are a number of ways of compiling Mono

	<ul>
		<li>From the <a href="#scripts">scripts</A>

		<LI><a href="#install">Manually</a> for the first time. 

		<li>Manually, <a href="#upgrade">while upgrading</a> to CVS
	</ul>

	(which is an easy way to get the latest CVS information)

<a name="scripts">
* Compiling with scripts

	There are scripts to help build mono for both Unix and Windows.  Get
	<a href="mono-build.sh">mono-build.sh</a> for Unix, or <a
	href="mono-build-w32.sh">mono-build-w32.sh</a> for Windows.
	These scripts automate the installation of GLIB and pkgconfig
	(building from source on Unix, and using binary packages
	provided by the GIMP for Windows project on Windows.)  To use
	the script, follow these simple steps:

	<ul>
		* Save the script for your platform somewhere (e.g. /usr/local/bin)
		* Make the script executable (i.e chmod 755 /usr/local/bin/mono-build.sh)
		* Create a directory to hold the mono source, and the compiled binaries (e.g. mkdir ~/mono)
		* Change to the new directory (i.e. cd ~/mono)
		* run the script (i.e. /usr/local/bin/mono-build.sh)
	</ul>

	The script requires wget on either platform, and building the
	software requires make, gcc, automake, autoconf, and libtool.
	You should install these packages from your distribution or
	with the cygwin installer. You should also take care of setting
	the right environment variables as the PKG_CONFIG_FLAGS, etc.

	The script will download required packages from
	www.go-mono.com and do a cvs checkout of mono in the current
	directory.  <b>IMPORTANT!:</b> The cvs server chosen defaults to 
	anonymous cvs;
	set your CVSROOT environment variable before running the script to
	select a particular cvs server.

<a name="install">
** Building the software manually

	You will need to obtain the Mono dependencies first: <a
	href="http://www.gtk.org">glib 2.x</a> and 
	<a href="http://www.freedesktop.org/software/pkgconfig">pkg-config</a>.

*** Building on Linux

	<ul>
		Unpack the Mono runtime distribution:
		<pre>
		tar xzvf mono-X.XX.tar.gz
		cd mono-X.XX
		
		</pre>
		<p>

		Then configure, compile and install:

		<pre>
		
		./configure --prefix=/usr/local
		make
		make install</pre>

		This will give you a runtime, C# compiler and runtime
		libraries.  

		If you want to recompile the runtime and the compiler,
		follow these steps, first unpack the MCS package:

		<pre>
		tar xzvf mcs-X.XX.tar.gz
		
		cd mcs-X.XX
		</pre>

		Then use the following command to compile and install:

		<pre>
		
		make -f makefile.gnu install prefix=/usr/local
		</pre>

		You can change /usr/local to something else if you want.
	</ul>

	
*** On Windows, to install and work on the compiler and the class libraries:

**** Install Cygwin and the GNU build tools, Microsoft's .NET Framework SDK and the precompiled GLIB 2.0 and pkg-config libraries.

	<ul>

		* Install <a href="http://www.cygwin.com">Cygwin</a>.

		* Install <a href="http://msdn.microsoft.com/downloads">
		  Microsoft .NET Framework SDK</a>.

		* Change to the /usr/local directory
		  of your Cygwin installation.<br>
		  Unzip the precompiled packages listed above.

	</ul>
	<ul>
		
		* If you downloaded the Mono 
		<a href="http://www.go-mono.com/snapshots">nightly snapshot
		</a>, untar the snapshot.

		* Change directories to "mcs".

		* Compile:
		
		<pre>
		make
		</pre>
	</ul>

*** On Windows, to compile the mono runtime:

	<ul>
		
		* If you downloaded the Mono 
		  <a href="http://www.go-mono.com/snapshots">nightly snapshot
		  </a>, untar the snapshot.

		* Change directories to "mono".

		* Configure, compile and install:
		<pre>
		./configure --prefix=c:/mono
		make
		make install
		</pre>

	</ul>

* Software resources and notes

		The required and additional software can be downloaded here:

		* Microsoft's .NET Framework SDK from 
		  <a href="http://msdn.microsoft.com/downloads">
		  msdn.microsoft.com/downloads</a>.

		* Cygwin and the GNU Make tools from  
		  <a href="http://www.cygwin.com">www.cygwin.com</a>.
		  Some people observed problems with autoconf 2.52. Installing 
		  autoconf 2.13 helped in those cases.

		* Precompiled GLIB 2.0 and pkg-config packages (and
		  their dependencies) by the <a href="http://www.gimp.org/~tml/gimp/win32//index.html">GIMP for Windows</a> project from
		  <a href="http://www.go-mono.com/archive/pkgconfig-0.11-20020310.zip">http://www.go-mono.com/archive/pkgconfig-0.11-20020310.zip</a><br>
		  <a href="http://www.go-mono.com/archive/glib-2.0.4-20020703.zip">http://www.go-mono.com/archive/glib-2.0.4-20020703.zip</a> <br>
		  <a href="http://www.go-mono.com/archive/glib-dev-2.0.4-20020703.zip">http://www.go-mono.com/archive/glib-dev-2.0.4-20020703.zip</a> <br>
		  <a href="http://www.go-mono.com/archive/libiconv-1.7.zip">http://www.go-mono.com/archive/libiconv-1.7.zip</a> <br>
		  <a href="http://www.go-mono.com/archive/libiconv-dev-1.7.zip">http://www.go-mono.com/archive/libiconv-dev-1.7-20020101.zip</a> <br>
		  <a href="http://www.go-mono.com/archive/libintl-0.10.40-20020101.zip">http://www.go-mono.com/archive/libintl-0.10.40-20020101.zip</a><br>


		* Download the Mono source code from the
		  <a href="#feb-11">packaged versions</a> or
		  the <a href="http://www.go-mono.com/snapshots">
		  nightly snapshots</a> or the <a href="anoncvs.html">
		  Anonymous CVS</a>.  The nightly snapshots are done every 
		  night at 10pm EST (Boston Time). The nightly snapshots are 
		  not guaranteed to build, but most of the time they should.


	</ul>


*** Notes on compiling GLIB 2.0 and pkg-config from source:


	<ul>

		* Some people observed problems with autoconf 2.52. Installing 
		  autoconf 2.13 helped in those cases (don't forget to do a
		  `make maintainer-clean' after the update).

		* Download, compile and install <a href="http://www.freedesktop.org/software/pkgconfig">pkg-config</a> from source.
              (I had to change line 674 of
              <nobr><tt>pkg-config-0.8.0/glib-1.2.8/gstrfuncs.c</tt></nobr> from 
		  <nobr><tt>extern char *strsignal (int sig);</tt></nobr> to
		  <nobr><tt>extern const char *strsignal (int sig);</tt></nobr>.

<pre>
tar xzvf pkg-config-0.8.0.tar.gz
cd pkg-config-0.8.0
./configure --prefix=/usr
make
make install
</pre>

		* Download, compile and install <a href="ftp://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.7.tar.gz">libiconv</a> from source.<br>
		  If you dont have MS Visual C/C++ 4.0 or 5.0 or 6.0 you can also try
		  the binary package available at <a
		  href="http://www.gimp.org/win32/libiconv-dev-20001007.zip">
		  http://www.gimp.org/win32/libiconv-dev-20001007.zip</a>.


		* Download, compile and install the 
		  <a href="ftp://ftp.gtk.org/pub/gtk/v2.0/glib-2.0.6.tar.gz">
		  glib 2.0</a> from source.

	</ul>

<a name="upgrading">
** Upgrading

	To upgrade your Mono installation from CVS, it is very
	important that you update your Mono and MCS modules from CVS
	at the same time.  Failure to do so might result in a
	problematic installation as the runtime and the class
	libraries will be out of sync.

	Run the following commands to update your CVS tree (more
	details in <a href="ccvs.html">Cvs and Mono</a> and the <A
	href="anoncvs.html">AnonCVS and Mono</a> pages). 

	<pre>
	(cd mono; cvs update -dP .)
	(cd mcs; cvs update -dP .)
	</pre>

	Once you have updated your sources, remove any cached
	assemblies or old binaries from the Mono "runtime" directory,
	and then compile each component:

	<pre>
	(cd mono/runtime; rm *exe *dll)
	(cd mono; make)
	(cd mcs; make)
	</pre>

	Now you can install the result:

	<pre>
	(cd mono; make install)
	</pre>

	Notice that following the above procedure does not require you
	to manually install the software in the `mcs' directory, as
	the relevant files will be copied by the `mono' makefiles.