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

ChangeLog - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b5ae703c700785926e41b339f52159f529c86a2 (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
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2005-02-01  Raja R Harinath  <rharinath@novell.com>

	* runtime/Makefile.am (test-support-files): New target.
	(mcs-do-compiler-tests): Use it.
	(mcs-compileall): Likewise.  Set MONO_PATH.  Remove
	reference to #71963, since it's fixed, and it's breaking elsewhere.
	Don't exit out on the first failing DLL.
	($(tmpinst)/config): Update to changes in data/config.in.

2005-01-31  Jonathan Pryor  <jonpryor@vt.edu>

	* data/config.in: Add libraries msvcrt and MonoPosixHelper for use by
	  Mono.Posix.dll.

2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* configure.in: check for term.h and termios.h

2005-01-30  Zoltan Varga  <vargaz@freemail.hu>

	* runtime/Makefile.am (mcs-compileall): Disable this for the 2.0
	profile because of bug #71963.

2005-01-28  Zoltan Varga  <vargaz@freemail.hu>

	* runtime/Makefile.am (mcs-compileall): New test to compile all methods
	in our assemblies.

2005-01-25  Raja R Harinath  <rharinath@novell.com>

	* runtime/Makefile.am ($(tmpinst)/config): New test support file.
	Map 'MonoPosixHelper' to in-tree version.
	($(tmpinst)/bin/mono): Use it.
	(mcs-do-run-test-profiles): Use $(tmpinst)/bin/mono as the RUNTIME.

2005-01-20  Jonathan Pryor  <jonpryor@vt.edu>

	* runtime/Makefile.am (centum_nunit_tests): Add class/Mono.Posix and
	  class/System, both of which pass all their unit tests.

2005-01-20  Raja R Harinath  <rharinath@novell.com>

	* runtime/Makefile.am (centum_nunit_tests): New.  List of NUnit
	tests that are currently passing 100%.
	(test_select): Run those on 'make check'.

2005-01-20  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile.am : removed nsys4cygwin.zip which has been 404 for a while.

2005-01-19  Zoltan Varga  <vargaz@freemail.hu>

	* Makefile.am (DIST_SUBDIRS): Distribute ikvm-native.

2005-01-15  Zoltan Varga  <vargaz@freemail.hu>

	* scripts/Makefile.am (bin_SCRIPTS): Remove whitespace after \.

2005-01-13  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in Makefile.am: Resurrect ikvm-jni.

	* ikvm-native: New directory which contains a copy of the 'native'
	module in IKVM cvs.

2005-01-05  Jonathan Pryor  <jonpryor@vt.edu>

	* configure.in: Add check for <checklist.h>.

2005-01-04  Jonathan Pryor  <jonpryor@vt.edu>

	* configure.in: Add check for vsnprintf.

2005-01-04  Raja R Harinath  <rharinath@novell.com>

	* runtime/Makefile.am (TEST_SUPPORT_FILES): Add	$(tmpinst)/bin/mono.
	($(tmpinst)/bin/mono): New.

2005-01-03  Ben Maurer  <bmaurer@ximian.com>

	* configure.in: Add mono-nunit to output
	
2005-01-03  Jonathan Pryor  <jonpryor@vt.edu>

	* Makefile.am: Change build order so that support is built before runtime.
	  This is primarily so that I don't have to wait N hours for mcs to finish
	  building to find out if I broke the sparc build (again).

2005-01-03  Jonathan Pryor  <jonpryor@vt.edu>

	* configure.in: Add checks for getdomainname and setdomainname.

2005-01-03  Jonathan Pryor  <jonpryor@vt.edu>

	* configure.in: Add checks for <fstab.h> and <sys/vfstab.h>.

2005-01-02  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in ikvm-jni Makefile.am: Remove ikvm-jni, since IKVM CVS
	now includes its own version.

2004-12-29  Duncan Mak  <duncan@ximian.com>

	* man/monop.1: Add docs on the new "--search" flag.

2004-12-28  Jonathan Pryor  <jonpryor@vt.edu>

	* configure.in: Add header & function checks for MonoPosixHelper.

2004-12-20  Raja R Harinath  <rharinath@novell.com>

	* configure.in: Change from 'pax' format to 'ustar' format for the
	tarfile, so that we can create packages on SuSE 9.0.

2004-12-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* configure.in: isinf can be a macro and the test from AC_CHECK_FUNCTION
	#undefines it before testing...

2004-12-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* configure.in: check for ieeefp.h and isinf.

2004-12-15  Raja R Harinath  <rharinath@novell.com>

	* configure.in ($mcsdir/build/config.make): Use $mcsdir relative
	to the $srcdir.  Fix definition of 'prefix'.

2004-12-14  Raja R Harinath  <rharinath@novell.com>

	* runtime/mono-wrapper.in (MONO_SHARED_DIR): Set.  Ensures that
	state isn't shared between an installed runtime and the in-tree
	runtime, and also ensure that both 'make check' and 'make
	distcheck' can run in parallel.
	* runtime/Makefile.am (clean-local): Remove the .wapi directory.

2004-12-09  Raja R Harinath  <rharinath@novell.com>

	* README: Update with details about the new build setup.

2004-12-08  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am (get-monolite-latest): Update to new location of
	bootstrap files in the mcs/ tree.

2004-12-07  Raja R Harinath  <rharinath@novell.com>

	* configure.in: Set 'tar-pax' option for automake-1.9.

2004-12-07  Raja R Harinath  <rharinath@novell.com>

	* runtime/Makefile.am (uninstall): New.

2004-12-06  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Disable -Wcast-align on sparc.

Mon Dec 6 15:00:53 CET 2004 Paolo Molaro <lupus@ximian.com>

	* configure.in: add option to disable some features of
	the runtime to create a smaller binary.

2004-12-03  Raja R Harinath  <rharinath@novell.com>

	* configure.in (ENABLE_NUNIT_TESTS): New.
	* runtime/Makefile.am (check-local): Use it to disable nunit
	tests.  Ensure that the test dlls are always built, however.

2004-12-03  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am (dist-hook): Ensure we use the 'default' profile.
	* mono/Makefile.am (HANDLES): New.  Disable 'handles' dir on Win32.
	(SUBDIRS): Use it.  Move 'cil' before 'metadata'.
	* runtime/Makefile.am (install-exec): Pass
	RUNTIME_HAS_CONSISTENT_GACDIR to the mcs/ build.

2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>

	* configure.in : Add a flag for systems which pass parameters in
	registers as well as the stack.

2004-11-30  Raja R Harinath  <rharinath@novell.com>

	* configure.in (AC_OUTPUT): Move runtime/Makefile to the end to
	workaround a bug in automake 1.7.x.
	* runtime/Makefile.am ($(symlinks)): Don't depend on config.status.

2004-11-27  Miguel de Icaza  <miguel@ximian.com>

	* configure.in: Removed support for configured-based bundles. 

2004-11-26  Raja R Harinath  <rharinath@novell.com>

	* runtime/Makefile.am ($(symlinks)): Depend on config.status too.
	* configure.in (runtime/etc/mono/1.0/machine.config): Use custom
	command to create.
	(runtime/etc/mono/2.0/machine.config): Likewise.
	* Makefile.am (get-monolite-latest): Update to new style of
	handling the "basic" profile.

2004-11-25  Raja R Harinath  <rharinath@novell.com>

	* runtime/Makefile.am (all-local): Make mcs/ tree writeable if
	necessary.
	(distdir): New.  Using 'cygnus' option disables the automake rule.

2004-11-25  Raja R Harinath  <rharinath@novell.com>

	* runtime/Makefile.am (check-local): Use $(mkinstalldirs).

2004-11-24  Raja R Harinath  <rharinath@novell.com>

	* runtime/Makefile.am (AUTOMAKE_OPTIONS): Set to 'cygnus'. 
	Prevent a redundant 'make all' pass during 'make check'.
	(build_profiles): Rename from install_profiles.
	(check_profiles): New.
	(TEST_SUPPORT_FILES): Don't include 'gmcs' if we're not building
	the .NET2.0 profile.
	(all-local,check-local): Use them.
	(install,install-exec,install-data): Override automake rules to
	prevent a redundant 'make all' pass.
	
2004-11-23  Chris Toshok  <toshok@ximian.com>

	* Makefile.am (bootstrap): echo -> @echo.

2004-11-23  Raja R Harinath  <rharinath@novell.com>

	Simplify 'make all' build.
	* configure.in (mono_build_root, mono_runtime, mono_cfg_dir):
	New AC_SUBSTed variables.
	(runtime/mono-wrapper): New generated file.
	(runtime/etc/mono/1.0/machine.config, runtime/etc/mono/2.0/machine.config):
	New symlinks.
	(AC_OUTPUT): Don't mention runtime/net_1_1 and runtime/net_2_0.
	* Makefile.am (SUBDIRS): Remove '.'.
	(tmpinst): Remove.
	(get-monolite-latest): Update.
	(populate-runtime-subdirs): Remove.
	(all-local, check-local): Move rules related to building in the mcs/ tree ...
	* runtime/Makefile.am: ... here.  Completely re-write file.
	(install-exec-local): Transfer ownership of installing .exes and
	.dlls to the Makefiles in the mcs/ tree.
	(_tmpinst): Use tmpinst tree only during testing.
	(SUBDIRS): Remove.
	* runtime/mono-wrapper.in: New.  Template for generated file.
	* runtime/net_1_1/Makefile.am, runtime/net_2_0/Makefile.am: Remove.

2004-11-22  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am (bootstrap): Add a transitional target.

2004-11-19  Raja R Harinath  <rharinath@novell.com>

	Integrate bootstrap build into 'make all'.  Most of the bootstrap
	targets are gone.
	* Makefile.am (SUBDIRS): Build current directory before 'runtime'.
	(tmpinst): Change location.
	(all-local): New.  Just invokes the build in mcs.
	(check-local): New.  Invokes 'run-test-profiles' in mcs.
	(get-monolite-latest): Update.  Move the unpacking code here,
	since 'monolite-bootstrap' is no more.
	(mcs-do-full-build): Don't set PATH.
	(tmpinst-dir-contents): Remove mcs.
	($(tmpinst)/bin/mcs): Now used only during 'make check'.
	($(tmpinst)/bin/mono): Don't set MONO_PATH.
	* README: Update to changes.

2004-11-18  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Disable static linking of mono if --disable-static is
	given. Fixes #69466.

2004-11-15  Martin Baulig  <martin@ximian.com>

	* runtime/net_2_0/Makefile.am (gac_assemblies_list): Added Mono.C5.

Fri Nov 12 17:56:26 CET 2004 Paolo Molaro <lupus@ximian.com>

	* configure.in, mono/mini/Makefile.am: control static
	linking of the mono binary with a configure option.

2004-11-12  Jonathan Pryor <jonpryor@vt.edu>

	* configure.in: Check for `struct dirent' members which don't
	  exist across all Unix platforms.

2004-11-08  Jonathan Pryor <jonpryor@vt.edu>

	* configure.in: Add new function/header/type checks for use by
	  MonoPosixHelper (the support directory).

2004-11-08  Raja R Harinath  <rharinath@novell.com>

	* configure.in (mcs_topdir, mcs_topdir_from_srcdir): New 'subst'ed
	variables.  Used to support both an in-tree mcs/ and a sibling
	mcs/ directory.
	* Makefile.am (mcs_topdir): Remove.
	(dist-hook): Distribute mcs/ as a subdirectory.
	* runtime/Makefile.am ($(monoone_DATA) $(monotwo_DATA) $(monobins_DATA)):
	Use mcs_topdir and mcs_topdir_from_srcdir.
	* runtime/net_1_1/Makefile.am (mscorlib.dll $(gac_assemblies) $(mdb_files)): 
	Likewise.
	(all-local): Depend on $(mdb_files) too.
	* runtime/net_2_0/Makefile.am: Likewise.
	
2004-11-05  Zoltan Varga  <vargaz@freemail.hu>

	* runtime/net_2_0/Makefile.am (install-data-local): 
	* runtime/net_1_1/Makefile.am (install-data-local): Applied patch
	from Götz Waschk (waschk@informatik.uni-rostock.de). Make this work 
	with DESTDIR.

2004-10-31  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Fix up --with-jit=no so it actually works. Fixes 
	#61320.

2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* man/mono.1: documented MONO_THREADS_PER_CPU.

2004-10-29  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Add INCLUDED_LIBGC automake conditional.

2004-10-24  Jonathan Pryor <jonpryor@vt.edu>

	* man/mono.1: Add documentation for the MONO_TRACE environment variable.

2004-10-14  Joe Shaw  <joeshaw@novell.com>

	* man/mono.1: Fix the syntax of the M: trace syntax

2004-10-10  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Add some checks for cygwin weirdness.

2004-10-08  Zoltan Varga  <vargaz@freemail.hu>

	* support/Makefile.am (libMonoPosixHelper_la_SOURCES): Do not build
	zlib_macros if zlib.h is not found.

	* configure.in: Add check for zlib.h.

2004-09-28  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>

	* mini-s390.c: Fix AND_IMM/OR_IMM/DIV_IMM/REM_IMM

2004-09-28  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am ($(tmpinst)/bin/pedump): New.
	(mcs-do-run-test-profiles): Depend on it.

2004-09-27  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am (mono-do-testjit): New target, unused for now.  Runs
	the mono testsuite in tests/.
	(tmpinst-dir): Create etc/mono/2.0.
	($(tmpinst)/bin/ilasm, $(tmpinst)/etc/mono/2.0/machine.config): New.

2004-09-21 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>

	* configure.in: Cater for S/390 on Linux

2004-09-21    <vargaz@freemail.hu>

	* configure.in: Link with ole32 on windows.

2004-09-20  Jackson Harper  <jackson@ximian.com>

	* support/map.c/h: Add poll events map functions. Use values
	instead of names for defines.
	
2004-09-17  Martin Baulig  <martin@ximian.com>

	* Makefile.am (mcs-do-compiler-tests): Reverted Raja's latest
	change in this target.

2004-09-14  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am (mcs-do-full-build): Pass NO_SIGN_ASSEMBLIES=yes to
	reduce the number of passes.  We will get the assemblies signed in
	the 'populate-runtime-subdir' phase.
	(mcs-do-run-test-profiles): Rename from mcs-do-run-tests.  Use
	'test-profiles' to test all profiles.
	(mcs-do-compiler-tests): Use 'compiler-tests' target in mcs/.
	(bootstrap-check): Update.
	* runtime/Makefile.am ($(monoone_DATA) $(monotwo_DATA) $(monobins_DATA)): 
	Simplify.

2004-09-10  Zoltan Varga  <vargaz@freemail.hu>

	* Makefile.am (populate-runtime-subdir): Avoid -path argument to find
	since it is not supported on solaris.

2004-09-03  Martin Baulig  <martin@ximian.com>

	* Makefile.am (bootstrap-world): New target.

2004-09-02  Martin Baulig  <martin@ximian.com>

	* runtime/net_1_1/Makefile.am (install-data-local): Install
	mscorlib.dll.mdb into $(corlibdir).

	* runtime/net_2_0/Makefile.am: Likewise.

2004-08-30  Zoltan Varga  <vargaz@freemail.hu>

	* scripts/mcs.in: Remove obsolete comment.

2004-08-27  Lluis Sanchez Gual  <lluis@novell.com>

	* data/net_1_1/DefaultWsdlHelpGenerator.aspx: Little fix.
	* data/net_2_0/DefaultWsdlHelpGenerator.aspx: Added information about
	  basic profile compliance.
	* data/net_2_0/machine.config: Use 2.0 assembly versions.

2004-08-26  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am (mcs-do-run-test): Depend on '$(tmpinst)/bin/mbas'.
	($(tmpinst)/bin/mbas): Create temporary wrapper file, so that the
	testcases pick the built 'mbas.exe'.

2004-08-17  Zoltan Varga  <vargaz@freemail.hu>

	* mono/os/gc_wrapper.h: Only use thread local alloc if using the included libgc, since the
	stock one has broken headers.

	* configure.in (PLATFORM_WIN32): Make the included libgc the default on windows.

2004-08-17  Dick Porter  <dick@ximian.com>

	* configure.in: Correct intl library for FreeBSD and OpenBSD.
	Fixes bug 62884, patch by Tom McLaughlin (tmclaugh@sdf.lonestar.org).

2004-08-16  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Set new automake variable LIBGC_STATIC_LIBS.

2004-08-14  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in (HAVE_KW_THREAD): Pass USE_COMPILER_TLS to libgc if
	__thread works.

2004-08-11  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Fix __thread test.

2004-08-07  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Add proper checks for the 'undefined reference to '__tls_get_addr' problem.

2004-08-06  Geoff Norton  <gnorton@customerdna.com>

	* configure.in: Add a kqueue check

2004-08-03  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>

	* configure.in: Enable S/390 64-bit JIT.

2004-07-31  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Enable AMD64 JIT.

2004-07-30  Martin Baulig  <martin@ximian.com>

	* Makefile.am: The symbol writer is now called
	Mono.CompilerServices.SymbolWriter.dll.	

2004-07-30  Raja R Harinath  <rharinath@novell.com>

	* runtime/Makefile.am (monoone_DATA): Add mcs.exe.config.
	(gmcs_exe): Add gmcs.exe.config.
	($(monoone_DATA) $(monotwo_DATA) ...): Add location of the .config
	files too.

2004-07-29  Lluis Sanchez Gual  <lluis@novell.com>

	* Makefile.am: Copy machine.config in the correct _tmpinst subdirectory.

2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>

	* configure.in: Added data/net_1_1 and data/net_2_0 to the build.
	* data/Makefile.am: Removed installation of machine.config and
	  DefaultWsdlHelpGenerator.aspx. Those now are in a version-specific
	  directory.
	* data/net_1_1/Makefile.am, data/net_2_0/Makefile.am: new makefiles for
	  installing 1.1 and 2.0 makefiles.
	* runtime/net_1_1/Makefile.am, runtime/net_2_0/Makefile.am: Install mscorlib
	  at the correct version specific directory.

2004-07-27  John Merryweather Cooper <john_m_cooper@yahoo.com>
	* configure.in: Disable __thread test (TLS) for FreeBSD as
	it succeeds on FreeBSD 5.x when it should fail.  Fix pthread
	library detection for FreeBSD 4.x since pthread is embedded
	in libc_r on this platform.  Fix some typos in my host
	regexes for freebsd.

2004-07-23  Dick Porter  <dick@ximian.com>

	* configure.in: Changes for FreeBSD thread support by John
	Merryweather Cooper <john_m_cooper@yahoo.com>.

2004-07-15  Jackson Harper  <jackson@ximian.com>

	* man/gacutil.1: MONO_GAC_PREFIX not MONO_GAC_PATH
	
2004-07-12  Massimiliano Mantione  <massi@ximian.com>

	* docs/abc-removal.txt: Updated documentation for ABC removal.

2004-07-12  Massimiliano Mantione  <massi@ximian.com>

	* mono/mini/abcremoval.c: Rewritten most of ABC removal.
	* mono/mini/abcremoval.h: Rewritten most of ABC removal.
	* mono/mini/build_relations_propagation_table.pl: Deleted (unneeded after the rewrite).
	* mono/mini/propagated_relations_table.def: Deleted (unneeded after the rewrite).

2004-07-03  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Add --with-tls option to replace the misnamed 
	--with-nptl option.

2004-07-02  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am (mcs-do-basic-build, mcs-do-short-build):
	Pass NO_SIGN_ASSEMBLY=yes to sub-make.
	($(tmpinst)/bin/mono) [PLATFORM_WIN32]: Make it work.

2004-07-02  Zoltan Varga  <vargaz@freemail.hu>

	* man/mono.1: Added 'aot' to trace options.

2004-06-30  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Fix trunc check + add SPARC64 defines.

2004-06-29  Jackson Harper  <jackson@ximian.com>

	* man/gacutil.1: Update man with new command line options.
	
2004-06-29  Raja R Harinath  <rharinath@novell.com>
            Atsushi Enomoto  <atsushi@ximian.com>

	* runtime/net_1_1/Makefile.am (GAC_ROOT_DIR): Renamed from GAC_DIR.
	(GAC_DIR): New define that doesn't include $(DESTDIR).
	(install-data-local,uninstall-local): Use them.  Use in-tree mono
	runtime, not the installed one.

2004-06-29  Raja R Harinath  <rharinath@novell.com>

	* runtime/Makefile.am (gmcs_exe): New.  Set only if not W32.
	(monotwo_DATA): Use it.
	From Atsushi Enomoto.

2004-06-24  Raja R Harinath  <rharinath@novell.com>

	* runtime/net_2_0/Makefile.am (gac_assemblies_list): Put back
	ICSharpCode.SharpZipLib, not that it has a different version.

2004-06-24  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am (MCS_DIRS, MCS_FILES): Add back Mono.CSharp.Debugger.
	(tmpinst-dir-contents, $(tmpinst)/bin/mono.bat): Remove mono.bat
	in W32.  Use 'mono' and 'mcs' in W32 too.
	(bootstrap) [PLATFORM_WIN32]: Back to single stage bootstrap.
	* runtime/net_2_0/Makefile.am (gac_assemblies_list): Don't mention
	nunit.*, IBM.Data.DB2, ICSharpCode.SharpZipLib.
	Fix for #60443, the GAC .DLL-Hell.

2004-06-22  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am (bootstrap) [PLATFORM_WIN32]: Make two-stage.

2004-06-18  Jackson Harper  <jackson@ximian.com>

	* man/mono.1: Add MONO_LOG_LEVEL and MONO_LOG_MASK. Add
	instructions on setting multiple mask values.
		
Fri Jun 18 19:39:09 CEST 2004 Paolo Molaro <lupus@ximian.com>

	* Makefile.am: process data before runtime, so the config file is
	installed and gacutil has a chance to work (finding symlink).

2004-06-18  Raja R Harinath  <rharinath@novell.com>

	* runtime/Makefile.am ($(monoone_DATA) $(monotwo_DATA) $(monobins_DATA)): 
	Test if files exist in the mcs/ tree before creating symlinks.
	Remove symlinks before creating them again.
	* runtime/net_1_1/Makefile.am (mscorlib.dll $(gac_assemblies)): Likewise.
	* runtime/net_2_0/Makefile.am (mscorlib.dll $(gac_assemblies)): Likewise.

2004-06-18  Raja R Harinath  <rharinath@novell.com>

	* scripts/Makefile.am (REWRITE): New.  Common rewriting 'sed' command.
	(bin_SCRIPTS): Unify all the script generating rules into one.

2004-06-16  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am (bootstrap) [PLATFORM_WIN32]: Open code.  Don't
	build and populate net_2_0 profile.
	(populate-runtime-subdir): Make into subroutine that takes list of
	profiles to populate.
	(faststrap): Update.
	(MCS_DIRS, MCS_FILES, MONO_CSHARP_DEBUGGER_DIR,	MONO_CSHARP_DEBUGGER_FILE): 
	Avoid automake conditional/+= problems.
	(populate-runtime-subdir): Rewrite sanity check.

2004-06-16  Raja R Harinath  <rharinath@novell.com>

	Include prototype completely-untested 'make bootstrap' support for W32.
	* Makefile.am (bootstrap): Define to fasterstrap for W32.
	(MCS_DIRS, MCS_FILES): Don't refer to Mono.CSharp.Debugger in W32.
	(tmpinst-dir): Change sub-make invoke to ...
	(tmpinst-dir-contents): ... this.  Build 'mono.bat' in W32 instead
	of 'mono' and 'mcs'.
	($(tmpinst)/bin/mono.bat): New.

2004-06-15  Dick Porter  <dick@ximian.com>

	* configure.in: Check for struct ip_mreqn and struct ip_mreq on
	windows too.  Fixes bug 55040.

Mon Jun 14 18:38:34 CEST 2004 Paolo Molaro <lupus@ximian.com>

	* configure.in: better explain that --with-nptl is not related to
	NPTL, but to __thread support. Set sigaltstack support to off by
	default.

2004-06-12  Raja R Harinath  <harinath@acm.org>

	* Makefile.am (populate-runtime-subdir): Add _tmpinst directory
	to the PATH.

2004-06-11  Jackson Harper  <jackson@ximian.com>

	* runtime/net_2_0/Makefile.am:
	* runtime/net_1_1/Makefile.am: Remove signing patches
	
2004-06-11  Jackson Harper  <jackson@ximian.com>

	* man/mono.1: Add documentation for MONO_GAC_PREFIX.
	* runtime/net_2_0/Makefile.am: 
	* runtime/net_1_1/Makefile.am: Sign assemblies before
	installing. Do not sign ziplib, npgsql, or nunit assemblies. Sign mscorlib.
	
2004-06-11  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am (populate-runtime-subdir): New target.  Does a
	controlled "make install" in the 'mcs/' directory to populate the
	'runtime' directory.
	(fasterstrap): Use it.

2004-06-10  Raja R Harinath  <rharinath@novell.com>

	* runtime/Makefile.am ($(monoone_DATA),$(monotwo_DATA),$(monobins_DATA)):
	Don't copy from prefix.  Use $(LN_S) to point to the mcs/ tree.
	* runtime/net_1_1/Makefile.am (mscorlib.dll,$(gac_assemblies)): 
	Use $(LN_S) to point to the mcs/ tree, rather than copying.
	* runtime/net_2_0/Makefile.am (mscorlib.dll,$(gac_assemblies)): Likewise.

2004-06-10  Raja R Harinath  <rharinath@novell.com>	

	Support the new assembly signing setup in mcs/.
	* Makefile.am (mcs-do-basic-build): Pass 'USE_BOOT_COMPILE' to sub-makes.
	($(tmpinst)/etc/mono/machine.config): New target.
	(tmpinst-dir.stamp): Remove and rewrite into ...
	($(tmpinst)/bin/mcs): ... this and ...
	($(tmpinst)/bin/mono): ... this.  Update to use the in-tree machine.config.
	(tmpinst-dir): Rewrite to invoke above $(tmpinst)/... targets directly.
	* configure.in (AC_PROG_LN_S): New check to define $(LN_S).
	
Thu Jun 3 14:39:17 CEST 2004 Paolo Molaro <lupus@ximian.com>

	* configure.in: libc setting for NetBSD (patch from recht@netbsd.org).

2004-06-01  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am (bootstrap,faststrap,fasterstrap): Refactor.
	Fix 'faststrap' to be corlib-version-change-safe.
	(one-stage-strap,two-stage-strap,three-stage-strap): Remove.
	(monolite-bootstrap): Update.

2004-05-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* configure.in: fixlets for windows.

2004-05-29  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: export CC instead of passing it to libgc/configure.

2004-05-28  Duncan Mak  <duncan@ximian.com>

	* runtime/Makefile.am: 
	* scripts/Makefile.am: Include mono-find-provides and
	mono-find-requires.
	
	* scripts/mono-find-provides.in:
	* scripts/mono-find-requires.in: New wrapper scripts.

2004-05-27  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Pass CC to libgc configure.

2004-05-27  Gert Driesen (drieseng@users.sourceforge.net)

	* monowiz.win32.nsi: normalized line-endings to unix (LF)

2004-05-27  Gert Driesen (drieseng@users.sourceforge.net)

	* monowiz.win32.nsi: do not include mono subdirectory in
	MonoConfigDir registry key, to match batch files

2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* data/DefaultWsdlHelpGenerator.aspx: fixed querystring attribute
	values. Now they are URlEncoded.

	* data/browscap.ini.gz: updated.

2004-05-26  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am (mcs-do-basic-build): No need to set MCS here.
	* runtime/net_1_1/Makefile.am (gac_assemblies_list): Update to
	reflect new names for nunit.util and nunit.framework.  Add
	nunit.core.
	* runtime/net_2_0/Makefile.am (gac_assemblies_list): Likewise.

2004-05-25 Ben Maurer  <bmaurer@users.sourceforge.net>

	* config.h.in: remove

2004-05-25 18:30 CET Patrik Torstensson <totte@hiddenpeaks.com>

	* configure.in: Check for trunc instead of truncl (HAVE_TRUNC)

2004-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Makefile.am:
	* monowiz.win32.nsi: improved windows installer script.

2004-05-21  Raja R Harinath  <rharinath@novell.com>

	* README: Update to include instructions for the various new
	bootstrap-like targets.

2004-05-20  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am (get-monolite-latest, monolite-bootstrap):
	New bootstrap targets to build from monolite.
	Based on idea from Jaroslaw Kowalski <jaak@zd.com.pl>.

2004-05-20  Raja R Harinath  <rharinath@novell.com>

	* configure.in (AC_OUTPUT): Add tools/Makefile and
	tools/locale-builder/Makefile.
	* Makefile.am (SUBDIRS): Remove tools.
	(DIST_SUBDIRS): Add 'tools'.
	(bootstrap): Rewrite so that we get two new targets.
	(faststrap): New two-stage build.
	(fasterstrap): New one-stage build.

2004-05-19  Jackson Harper  <jackson@ximain.com>

	* tools/
	* tools/Makefile.am: Add tools directory
	* tools/locale-builder: Add the locale-builder tool, this tool is
	not built by default as it is only needed by people that wish to
	moidify culture data.
	* Makefile.am: Add tools to build
	
Wed May 19 13:22:19 EDT 2004 Paolo Molaro <lupus@ximian.com>

	* configure.in: make MacOSX default to use the included libgc.

2004-05-18  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Get rid of -DMONO_USE_EXC_TABLES.

2004-05-19  Raja R Harinath  <rharinath@novell.com>

	* configure.in: Use proper autoconf idiom to pass additional
	arguments to libgc/configure.
	(PLATFORM_WIN32, NEED_LINK_UNLINK): Use three-argument AC_DEFINE.
	* acconfig.h: Update to reflect changes.

2004-05-17  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am (tmpinst-dir): Creates _tmpinst tree if
	necessary. Move body ...
	(tmpinst-dir.stamp): ... here.
	(stage3): Don't remove _tmpinst tree.
	(bootstrap-clean, bootstrap-check): New rules.  They run the
	corresponding rules in the mcs/ tree.

2004-05-14  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am: Revert unlogged unexplained changes.
	(stage3): Make 'all-profiles' since the mono source tarball
	carries all the net_2_0 preview dlls.

2004-05-11  Jackson Harper  <jackson@ximian.com>

	* runtime/net_1_1/Makefile.am:
	* runtime/net_2_0/Makefile.am: cscompmgd.dll is lowercase now.
	
2004-05-10  Raja R Harinath  <rharinath@novell.com>

	* Makefile.am (tmpinst-dir): Always add $tmpinst/lib to MONO_PATH.
	Fix quoting of commands.

2004-05-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* monowiz.win32.nsi: some changes i made to build the 0.91 win32 setup
	file.

2004-05-07  Bernie Solomon  <bernard@ugsolutions.com>

	* man/mono.1: mention MONO_EGD_SOCKET

2004-05-07  Raja R Harinath  <rharinath@novell.com>

	Goodbye 'fullbuild', hello 'bootstrap'.
	* Makefile.am (bootstrap): New target for building from CVS.  New
	improved version of 'fullbuild' -- does not install any files.
	(fullbuild): Obsolete target.  Bootstraps and installs tree.
	(mcs-tree-safe-build,xinstall-runtime,mcs-rest,remove-binaries):
	Removed.
	(stage1,stage1-mcs,stage1-mono,stage2,stage3)
	(tmpinst-dir,tmpinst-runtime): New targets used to implement a
	two-stage bootstrap.

2004-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* configure.in: scandir check is no longer needed.

2004-05-05  Bernie Solomon  <bernard@ugsolutions.com>

	* configure.in: set LIBC on HPUX

2004-05-05  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Detect JNI headers in GNU classpath sources as well.

2004-05-05  Raja R Harinath  <rharinath@novell.com>

	* runtime/net_2_0/Makefile.am (install-data-local, uninstall-local): 
	Only disable this if INSTALL_2_0 is disabled.

2004-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* data/DefaultWsdlHelpGenerator.aspx: add any cookie in the request to
	the request we do for the actual web service.

2004-05-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* configure.in: check for SIGEV_THREAD being defined before checking
	for AIO support. Fixes compilation under FreeBSD.

2004-05-04  Raja R Harinath  <rharinath@novell.com>

	* runtime/net_1_1/Makefile.am (mono_runtime): Use USE_JIT, not
	JIT_SUPPORTED.
	(install-data-local, uninstall-data-local): Run runtime with
	libtool.
	* runtime/net_2_0/Makefile.am: Likewise.
	Report from Urs C Muff <umuff@quark.com>.

2004-05-03  Jackson Harper  <jackson@ximian.com>

	* man/gacutil.1: Basic man page for gacutil. This doesn't include
	the new non-standard options yet.
	
2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* data/machine.config: added version and publickeytoken.

2004-05-01  Duncan Mak  <duncan@ximian.com>

	* runtime/net_1_1/Makefile.am:
	* runtime/net_2_0/Makefile.am (gac_assemblies_list): Add NUnit
	dlls here.
	(non_gac_assemblies): Removed, every thing is migrated over to gac_assemblies.
	(EXTRA_DIST): Include only gac_assemblies.
	(dist_assemblies_DATA): It's referring to $(non_gac_assemblies)
	and that is no gone now. So remove as well.
	($(non_gac_assemblies)): Bye bye.

2004-05-01  Duncan Mak  <duncan@ximian.com>
	
	* runtime/net_1_1/Makefile.am (gac_assemblies_list): Add
	System.Web.Services. Someone accidentally took the line out.

2004-04-30  Jackson Harper  <jackson@ximian.com>

	* runtime/net_1_1/Makefile.am:
	* runtime/net_2_0/Makefile.am: These assemblies are signed now.
	
2004-04-30  Raja R Harinath  <rharinath@novell.com>

	* runtime/net_1_1/Makefile.am (gac_assemblies_list): Remove .dll
	suffix.
	(gac_assemblies, non_gac_assemblies, corlibdir, dist_corlib_DATA): 
	New variables.  Use Automake idioms.
	(dist-hook): Remove.
	(install-local, uninstall-local): Use mscorlib.dll from current
	tree when running gacutil.
	(mono_runtime): New variable.  Points to either JIT compiler or
	interpreter.  
	Report from Bernie Solomon <bernard@ugsolutions.com>
	* runtime/net_2_0/Makefile.am: Likewise.
	* runtime/Makefile.am (dist_monobins_DATA): Rename from
	monobins_DATA.
	(EXTRA_DIST): Remove.
	* Makefile.am (fullbuild): Update to changes.

2004-04-30  Jackson Harper  <jackson@ximian.com>

	* runtime/net_2_0/Makefile.am:
	* runtime/net_1_1/Makefile.am: /lib/mono/gac. Dont forget the mono.
	
2004-04-30  Duncan Mak  <duncan@ximian.com>

	* runtime/Makefile.am ($(monobins_DATA)): Add sn.exe and sn.
	
2004-04-29  Duncan Mak  <duncan@ximian.com>

	* scripts/gmcs.in: New file.

	* scripts/Makefile.am (EXTRA_DIST, bin_SCRIPTS, CLEANFILES): Add
	gmcs script.

2004-04-29  Jackson Harper  <jackson@ximian.com>

	* runtime/net_2_0/Makefile.am: install 2.0 corlib to its own
	special little place.
	
2004-04-29  Zoltan Varga  <vargaz@freemail.hu>

	* acconfig.h configure.in: Add check for scandir.

2004-04-29  Raja R Harinath  <rharinath@novell.com>

	* runtime/Makefile.am (monobins_DATA): Add gacutil.exe.
	(SUBDIRS): Build here before building subdirs.
	* runtime/net_1_1/Makefile.am (all-local): Copy
	$(gac_assemblies_list) here.
	(install-data-local): Install dll from $(srcdir).
	(gacutil): Pick from current tree.
	* runtime/net_2_0/Makefile.am: Likewise.

	* Makefile.am (fullbuild): Update to changes in tree layout.
	* runtime/net_1_1/Makefile.am (install-data-local): Allow empty
	$(gac_assemblies_list).
	($(gac_assemblies_list)): Pick libraries from 'class/lib/default',
	not 'class/lib/net_1_1'.

2004-04-28  Jackson Harper  <jackson@ximian.com>

	* runtime/net_1_1/Makefile.am: Grab libs from proper directory, do
	not assume gacutil is installed.
	* runtime/net_2_0/Makefile.am: Do not assume gacutil is installed.
	
2004-04-28  Jackson Harper  <jackson@ximian.com>

	* configure.in: Add new Makefile.amS
	* runtime/Makefile.am: libs are now in profile dependant
	directories.
	* runtime/net_1_1/Makefile.am: Install and Uninstall the .net 1.1
	libs to the GAC.
	* runtime/net_2_0/Makefile.am: Install and Uninstall the .net 2.0
	libs to the GAC.
	* data/Makefile.am: cleanup browscap.ini
	
2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>

	* configure.in: reword message re EGD support
	now it is there

2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* config.h.in:
	* configure.in: added check for sys/aio.h. Also check the field name
	in 'union sigval'.

2004-04-28  Jackson Harper  <jackson@ximian.com>

	* scripts/Makefile.am:
	* scripts/gacutil.in: Add a gacutil script

2004-04-26  Jackson Harper  <jackson@ximian.com>

	* Makefile.am: Grab libraries from lib/default now.
	* runtime/Makefile.am: Grab libraries from lib/default now.
	
2004-04-26  Bernie Solomon  <bernard@ugsolutions.com>

	* configure.in: move setting of NO_VERSION_SCRIPT
	until after checking for GNU ld

2004-04-22  Urs C Muff <umuff@quark.com>

	move .net assemblies from $prefix/bin/*.exe to $prefix/lib/*.exe on
	windows/cygwin refactor .nsi to simply maintenance on script/batch
	generation
	* runtime/Makefile.am
	* script/Makefile.am
	* monowiz.win32.nsi

2004-04-14  Raja R Harinath  <rharinath@novell.com>

	* runtime/Makefile.am ($(assemblies_DATA)): Copy file into
	$(srcdir).  Clean up output.
	($(monobins_DATA)): Likewise.

	* Makefile.am (mcs-tree-safe-build): Fix typo.

2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>

	* configure.in: Added rules to check for getgrgid_r, getgrnam_r,
	getpwnam_r, getpwuid_r, getresuid and setresuid.

2004-04-13  Raja R Harinath  <rharinath@novell.com>

	Allow 'make fullbuild' to work on non-srcdir build.
	* Makefile.am (mcs_topdir): New variable.
	(mcs-tree-safe-build,mcs-rest,remove-binaries): Work in non-srcdir
	build.
	(xinstall-runtime): Likewise.  Use $(libgc_dir) directly, don't
	grep for 'libgc'.
	(fullbuild): Make ordering dependencies explicit.
	
2004-04-12  Sachin Kumar <skumar1@novell.com>

	* Makefile.am: Added 'web' in SUBDIRS

2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* configure.in: don't try-run the tests for nptl and/or sigaltstack
	if they are disabled in the command line.

2004-04-05  Jackson Harper  <jackson@ximian.com>

	* man/ilasm.1: Show /output instead of /out as the switch for
	specifying output file names.

2004-04-05  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Check for pthread_getattr_np and pthread_attr_get_np.

2004-04-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* config.h.in: added HAVE_GETPWUID_R
	* configure.in: check for getpwuid_r.

2004-03-23  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Fix GNU ld check.

2004-03-22  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Use amd64 instead of x86-64 as directory name. Fixes
	#55840.
	
	* configure.in: Disable -version-script if not using GNU ld. Fixes
	#55910.

	* configure.in: Speedup successful sigaltstack test.


	* configure.in: don't try-run the tests for nptl and/or sigaltstack
	if they are disabled in the command line.

2004-04-05  Jackson Harper  <jackson@ximian.com>

	* man/ilasm.1: Show /output instead of /out as the switch for
	specifying output file names.

2004-04-05  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Check for pthread_getattr_np and pthread_attr_get_np.

2004-04-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* config.h.in: added HAVE_GETPWUID_R
	* configure.in: check for getpwuid_r.

2004-03-23  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Fix GNU ld check.

2004-03-22  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Use amd64 instead of x86-64 as directory name. Fixes
	#55840.
	
	* configure.in: Disable -version-script if not using GNU ld. Fixes
	#55910.

	* configure.in: Speedup successful sigaltstack test.

2004-03-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* configure.in: this test for sigaltstack works.

2004-03-20  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Disable sigaltstack test for now since it can hang.
	
	* configure.in: Add test for working sigaltstack.
2004-03-16  Duncan Mak  <duncan@ximian.com>

	* runtime/Makefile.am
	(MakeCert.exe, cert2spc.exe, certmgr.exe, setreg.exe):
	Remember to install them to mono/runtime.

2004-03-14  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Enable JIT on sparc.

2004-03-13  Martin Willemoes Hansen  <mwh@sysrq.dk>

	* data/config.in: Changed libgtkhtml-3.0.so.2 to libgtkhtml-3.0.so to fix
	breakage with gtkhtml-3.0.10

2004-03-10  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in acconfig.h: Add a --with-sigaltstack option for platforms
	where the sigaltstack based exception handling does not work.

2004-03-08  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in acconfig.h: Add check for aintl function, which is the
	solaris equivalent of truncl.

2004-02-29  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Add check for GC_enable.
	
	* configure.in: Remove amd64/Makefile from AC_OUTPUT to fix build.

2004-02-19  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Add proper support for --with-nptl for people who
	have linking problems when it is enabled.

2004-02-18  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Add test for __thread keyword and shared libs.

2004-02-16  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Enable --with-nptl by default.

2004-02-03  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Applied patch from Adrian Bunk (bunk@fs.tum.de). Fix
	message for failed gethostbyname2_r check.

Fri Jan 23 16:07:05 EST 2004 Paolo Molaro <lupus@ximian.com>

	* configure.in, acconfig.h: check for truncl. Disable 
	version script on MacOSX (see bug #51590 if a check becomes
	necessary).

Fri Jan 23 21:26:01 CET 2004 Paolo Molaro <lupus@ximian.com>

	* configure.in, acconfig.h: added check for socklen_t.

2004-01-22  Zoltan Varga  <vargaz@freemail.hu>

	* Makefile.am: Do not install mono.pc on platforms without a JIT.

2004-01-21  Zoltan Varga  <vargaz@freemail.hu>

	* Makefile.am (remove-binaries): Get rid of non-portable >& construct.

2003-12-29  Miguel de Icaza  <miguel@ximian.com>

	* scripts/sn.in: Add sn script.

2004-01-15  Zoltan Varga  <vargaz@freemail.hu>

	* scripts/Makefile.am: Add al.exe.

	* scripts/al.in: New file.

	* runtime/Makefile.am: Add al.exe.

2004-01-10  Jackson Harper <jackson@ximian.com>

	* data/machine.config: Add trace handler (Trace.axd) add trace
	configuration handlers.
	
2004-01-06  Martin Willemoes Hansen  <mwh@sysrq.dk>

	* doc/books: Added books on Web Services and ASP.NET

2004-01-04  Daniel Morgan <danielmorgan@verizon.net>

	* monowiz.win32.nsi: update the NSIS installer script for windows
	  to support NSIS 2.0 rc1 and Mono 0.29

2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>

	* configure.in: missed in my last change

	* samples/embed/testi.c: interpreter embedding example

	* docs/embedded-api: add info on interpreter embedding

Mon Dec 22 18:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>

	* configure.in, acconfig.h: use mach semaphores on darwin.

2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>

	* Makefile.am: Create mint.pc
	mint.pc.in: Added for embedding the interpreter

2003-12-16  Martin Baulig  <martin@ximian.com>

	* Makefile.am: In a Makefile.am, comments are started with `#' and
	not with `dnl' - I must have been an idiot ...

2003-12-10  Todd Berman <tberman@gentoo.org>

	* configure.in: adding libicu url to the ICU: no message.

2003-12-05  John Luke  <jluke@cfl.rr.com>

	* data/config.in: new dll mapping entry for libgstreamer
	
2003-12-02  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>

	* README: tiny fix ;-)

2003-11-26  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Add -fno-strict-aliasing to CFLAGS.
	
	* configure.in: Applied patch from recht@netbsd.org. Avoid linking in
	librt if not neccesary.

2003-11-24  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Fix signbit check. Fixes #51315.

2003-11-20  Jackson Harper <jackson@ximian.com>

	* data/machine.config: Add OutputCacheModule
	
2003-11-19  Jackson Harper <jackson@ximian.com>

	* doc/web/team.xml: New email address and job description
	* doc/web/team/jackson.png: Picture of me debugging...seems appropriate
	
2003-11-14  Jackson Harper <jackson@ximian.com>

	* Makefile.am: delete mscorlib.dll
	
2003-11-12 Jackson Harper <jackson@ximian.com>

	* Makefile.am: corlib is now named mscorlib.dll
	
2003-11-12  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in acconfig.h: Add check for signbit, which is missing in
	FreeBSD 4.x.

2003-11-07  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Remove debugging junk accidently checked in.
	
	* configure.in: Add new --with-nptl option to enable NPTL only
	features since auto-detection is not reliable.

	* autogen.sh: Fix previous patch and silence noisy GNU which.	

2003-11-07  Bernie Solomon  <bernard@ugsolutions.com>

	* autogen.sh: tweak glibtool check so it works
	if which doesn't set return code properly

2003-11-07  Zoltan Varga  <vargaz@freemail.hu>

	* autogen.sh: Silence noisy GNU which.
	
	* autogen.sh: Applied patch from Peter Teichman (peter@ximian.com). 
	Use 'glibtool' instead of 'libtool' on OSX. 

2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>

	* mono/benchmark/pinvoke.cs: New benchmark for testing the performance
	of the managed/unmanaged boundary.

2003-11-06  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in acconfig.h: Add check for __thread keyword in gcc.

2003-10-29  Dick Porter  <dick@ximian.com>

	* man/mono.1: Document MONO_EXTERNAL_ENCODINGS variable

2003-10-16  Miguel de Icaza  <miguel@ximian.com>

	* man/mono.1: Document new --trace options

2003-10-13  Bernie Solomon  <bernard@ugsolutions.com>

	* configure.in: add hppa support (64bit only)
	make solaris build work with Forte compiler

2003-10-13  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Added check for pthread_attr_setstacksize.

	* mono/tests/ChangeLog: New file.
	
2003-10-13  Zoltan Varga  <vargaz@freemail.hu>

	* mono/tests/Makefile.am: Link the tests with the test driver program
	used for the mini tests.

2003-10-10  Zoltan Varga  <vargaz@freemail.hu>

	* mono/tests/libtest.c (mono_test_marshal_delegate): Added test for
	stdcall calling convention.

2003-10-09  Dick Porter  <dick@ximian.com>

	* acconfig.h:
	* configure.in: Check for ICU availability

2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>

	* mono/tests/libtest.c: fix after merge of pinvoke2.cs

2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>

	* mono/tests/Makefile.am mono/tests/libtest.c
	mono/tests/pinvoke18.cs: new test for bool marshalling.

2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>

	* mono/scripts/Makefile.am mono/scripts/*.in: fix
	managed .exe paths so they are found under cygwin.

2003-10-07  Zoltan Varga  <vargaz@freemail.hu>

	* mono/tests/pinvoke2.cs mono/tests/libtest.c: Fix array of structs
	test.

2003-10-06  Bernie Solomon  <bernard@ugsolutions.com>

	* mono/tests/pinvoke2.cs mono/tests/pinvoke11.cs 
	mono/tests/libtest.c: Add more pass by value struct
	tests for platforms with more complex calling conventions 
	(Sparc V9, HPPA 64 bit).

2003-10-06  Zoltan Varga  <vargaz@freemail.hu>

	* mono/tests/pinvoke2.cs mono/tests/libtest.c: Add array of structs
	marshalling test.

2003-10-04  Bernie Solomon  <bernard@ugsolutions.com>

	* mono/tests/libtest.c: remove warnings except
	"no previous prototype"

2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>

	* mono/tests/libtest.c: (test_lpwstr_marshal) remove undefined
	behaviour of increment, (mono_test_marshal_char) = should be ==

2003-09-30  Zoltan Varga  <vargaz@freemail.hu>

	* mono/tests/remoting1.cs: Added test for interface casts on
	TransparentProxies.

2003-09-24  Bernie Solomon  <bernard@ugsolutions.com>

        * mono/tests/pinvoke*.cs, delegate4.cs, marshal10.cs, marshal4.cs
          marshal5.cs: remove .so from DllImport of libtest to aid portability.

2003-09-08  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Added check for valgrind headers.

2003-09-03  Zoltan Varga  <vargaz@freemail.hu>

	* Makefile.am: Use $(MAKE) in even more places. Patch by Bernie Solomon
	(bernard@ugsolutions.com).
	
2003-08-27  Zoltan Varga  <vargaz@freemail.hu>

	* Makefile.am: Use $(MAKE) instead of make. Patch by Bernie Solomon
	(bernard@ugsolutions.com).

2003-08-25  Zoltan Varga  <vargaz@freemail.hu>

	* mono.pc.in: Added gthread-2.0.

2003-08-22  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Added gthread-2.0 to GLIB_CFLAGS and GLIB_LIBS, so we
	can call g_thread_init ().

2003-08-21  Zoltan Varga  <vargaz@freemail.hu>

	* mono/tests/threadpool.cs mono/tests/threadpool1.cs: Make increments 
	of static variables atomic. Fixes bug #47683.

2003-08-21  Johannes Roith  <johannes@jroith.de>

	* mono/Makefile.am: small update. make sure, glib makes it in the build, add optional target for dependencies

2003-08-18  Johannes Roith  <johannes@jroith.de>

	* mono/Makefile.am: add windows build option
	* mono/monowiz.win32.nsi: add windows build script
	* mono/mono-win32-light.bmp: add bitmap

2003-08-16  Zoltan Varga  <vargaz@freemail.hu>

	* mono/tests/checked.cs: Added mul.ovf tests.

2003-08-15  Duncan Mak  <duncan@ximian.com>

	* doc/mysql: Change references to ByteFX.Data.MySQLClient to the
	correct ByteFX.Data.MySqlClient (note the change in
	capitalization). Thanks to Tom Wagner <Tom.Wagner@wacker.com> for
	spotting the error.

2003-08-15  Zoltan Varga  <vargaz@freemail.hu>

	* mono/tests/bug-47295.cs: Regression test for bug #47295.

2003-08-11  Duncan Mak  <duncan@ximian.com>

	* runtime/Makefile.am (assemblies_DATA): Add Mono.Cairo.dll.

Sun Aug  3 21:12:13 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>

	* configure.in: added FPU test for ARM.

Thu Jul 31 16:19:07 CEST 2003 Paolo Molaro <lupus@ximian.com>

	* configure.in, etc.: portability fixes and support for
	buidling outside the srcdir from Laurent Morichetti <l_m@pacbell.net>.

2003-07-22  Duncan Mak  <duncan@ximian.com>
       
        * runtime/Makefile.am: Remove sqlsharp as we no longer distribute it.

2003-07-22  Zoltan Varga  <vargaz@freemail.hu>

	* mono/tests/Makefile.am: Add missing test. Make tests interruptable
	by Ctrl-C. Add testinterp target to run the tests with the interpreter.
	Do not try to build vararg.cs under mcs.

	* configure.in: Fix detection of GC_gcj_malloc.

2003-07-14  Jerome Laban <jlaban@wanadoo.fr>

	* acconfig.h:
	* configure.in: Check for gethostbyname2_r availability.
	* data/machine.config: Added section system.net/settings. Added
	option for IPv6 availability.	

2003-07-13  Zoltan Varga  <vargaz@freemail.hu>

	* mono/tests/cattr-object.cs: Make it run under both mono and MS.NET.

	* mono/tests/struct.cs: Add test for unboxing trampolines.

	* mono/tests/bug-27420.cs: new regression test.

	* mono/tests/Makefile.am: skip vararg test since it does not compile 
	under mono. Add testinterp target. Add new tests.
	
2003-07-10  Martin Willemoes Hansen

	* doc/web/team.xml : Modified my tasks a bit.

2003-07-01  Paolo Molaro <lupus@ximian.com>

	* acconfig.h, configure.in: added bundle support.

2003-06-10  Dick Porter  <dick@ximian.com>

	* acconfig.h:
	* configure.in: Check for struct ip_mreq if struct ip_mreqn isn't
	available.

2003-06-10  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Define HAVE_GC_GCJ_MALLOC for included libgc.

2003-06-10  Martin Baulig  <martin@ximian.com>

	* configure.in: Fall back to boehm if we don't have a libgc
	subdirectory.

2003-06-10  Martin Baulig  <martin@ximian.com>

	* configure.in: Make the libgc stuff actually work; we now create
	a shared libmonogc.so when using the included libgc.

2003-06-09  Martin Baulig  <martin@ximian.com>

	* configure.in: Only check for gc if --with-gc=boehm.

2003-06-08  Martin Baulig  <martin@ximian.com>

	* configure.in: Tell libgc's configure about our threads library.

2003-06-08  Martin Baulig  <martin@ximian.com>

	* libgc/: Integrate the libgc module here.

	[Note: A simple `cvs update' won't work this time; you either need
	to re-checkout the `mono' module or manually move the `libgc'
	module here.]

	* configure.in (--with-gc): Added `included' option to use the
	included libgc.  This is now also the default.
	(LIBGC_CFLAGS, LIBGC_LIBS): Put the libgc stuff here and AC_SUBST it.
	(INCLUDED_LIBGC): New automake conditional.
	(USE_INCLUDED_LIBGC): #define this if appropriate.

	* autogen.sh: Run libgc/autogen.sh.

	* Makefile.am (SUBDIRS): Added libgc.

2003-06-05  Duncan Mak  <duncan@ximian.com>

	* mono.spec.in (Requires): Add libxml2 and libxslt dependency on
	the package.

2003-05-19  Dick Porter  <dick@ximian.com>

	* configure.in: Netbsd build fix by marc@informatik.uni-bremen.de.

2003-05-10  Martin Willemoes Hansen <mwh@sysrq.dk>

	* scripts/Makefile.am: Added monoresgen secutil sqlsharp
	  shell wrapper scripts.

2003-05-08  Zoltan Varga  <vargaz@freemail.hu>

	* mono/tests/Makefile.am: 
	- Compile with mcs.
	- Disable some warnings.
	- Added executables to clean target.
	- Make testjit the default target.
	- Print list of failed tests at the end of a test run.
	- Abort tests when Ctrl-C is pressed.

	* mono/tests/test-driver: Return with a special exit code when 
	SIGINT is detected.

	* mono/tests/checked.cs: Make it compile.
	
2003-05-02  Miguel de Icaza  <miguel@ximian.com>

	* runtime/Makefile.am ($(monobins_DATA)): Use explicit file names
	for the target exe binaries.

	Copy cilc.exe and secutil.exe from the right paths to the right
	location.

	Add missing assemblies.

2003-05-02  Alp Toker  <alp@atoker.com>

	* data/config.in: new dll mapping entry for libglade

2003-05-01  Duncan Mak  <duncan@ximian.com>

	* scripts/Makefile.am: 
	* runtime/Makefile.am: Install cilc and ilasm.

2003-04-29  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/Makefile.am (JITTEST_PROG): use mini/mono

2003-04-16  Charles Iliya Krempeaux  <charles@reptile.ca>

	* doc/web/team.xml : Added myself to it.

2003-04-10  Duncan Mak  <duncan@ximian.com>

	* doc/web/render-team-page.cs: Make the names of the element be
	lowercase instead. BenM says this makes it XHTML compliant; heck,
	I'm generating this from an XmlDocument already, why not make it
	XHTML compliant?

2003-04-10  Duncan Mak  <duncan@ximian.com>

	* doc/web/render-team-page.cs (Compare): Correctly fix
	ContributorComparer.
	(RenderHtml): Add some SetAttribute loving to make it render prettier.

	* doc/web/team.xml: Revert excessive indenting.

2003-04-07  Martin Baulig  <martin@ximian.com>

	* mono/mini/: Added this directory to the build; install `mini'
	and `libmini.la'.

2003-04-07  Duncan Mak  <duncan@ximian.com>

	* doc/web/render-team-page.cs: Fix ContributorComparer.

2003-04-04  Duncan Mak  <duncan@ximian.com>

	* doc/web/render-team-page.cs: Make it use 'none.png' if no image
	are specified in the XML.

	* doc/web/team.xml: Remove the comment.

	* doc/web/render-team-page.cs: Make it not output a full HTML file.

2003-04-04  Duncan Mak  <duncan@ximian.com>

	* doc/web/commands: 
	* doc/web/makefile: Add team page information.

	* doc/web/team.xml: 
	* doc/web/render-team-page.cs: Code for rendering a team page.

2003-04-02  Duncan Mak  <duncan@ximian.com>

	* doc/web/makefile: Add a new make target for generating a team
	page on go-mono.com.

2003-04-04  Zoltan Varga  <vargaz@freemail.hu>

	* configure.in: Added check for GC_gcj_malloc.

2003-04-04  Martin Willemoes Hansen <mwh@sysrq.dk>

	* man/sqlsharp.1: changed pass= to password= for the 
	  PostgreSql provider.

2003-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* data/machine.config: added SessionStateModule to httpModules section.

2003-02-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* data/machine.config: added default sessionState section and handler.

2003-02-17  Daniel Morgan <danmorg@sc.rr.com>

	* doc/provider-factory: add new web page 
	about Mono.Data's ProviderFactory

	* doc/web/commands
	* doc/web/makefile: add provider-factory web page to build
	
	* doc/ado-net
	* doc/ibmdb2
	* doc/postgresql
	* doc/sqlclient
	* doc/tdsclient
	* doc/sybase
	* doc/mysql
	* doc/firebird
	* doc/oracle
	* doc/oledb
	* doc/odbc
	* doc/sqlite: updated web pages

2003-02-16  Martin Baulig  <martin@ximian.com>

	* doc/jit-debug-sample
	* doc/jit-debug-sample2: Removed.

	* doc/jit-debug: Updated.

2003-02-13  Daniel Morgan <danmorg@sc.rr.com>

	* doc/screenshots
	* doc/ado-net
	* doc/oracle
	* doc/gtk-sharp: update web pages
	
2003-02-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* data/machine.config: added sample globalization section.

2003-02-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* data/machine.config: added UrlAuthorizationModule and
	AuthenticationConfigHandler.

2003-02-11  Tim Coleman <tim@timcoleman.com>
	* data/config.in: Add mapping for Oracle call interface
	(OCI) native libraries.

2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* configure.in: added check for sys/un.h.

2003-01-29  Daniel Morgan <danmorg@sc.rr.com>

	* doc/postgresql
	* doc/mysql
	* doc/ado-net: updates to web pages
	
	* man/sqlsharp.1: update to man page

2003-01-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* configure.in: added WIN32_THREADS flag when building under windows.
	It seems that the header files of the gc do not always define it when
	GC_WIN32_THREADS is defined.

2003-01-26  Daniel Morgan <danmorg@sc.rr.com>

	* doc/index
	* doc/ado-net
	* doc/firebird
	* doc/ibmdb2
	* doc/mysql
	* doc/odbc
	* doc/oledb
	* doc/oracle
	* doc/postgresql
	* doc/sqlclient
	* doc/sqlite
	* doc/sybase
	* doc/tdsclient: corrections

2003-01-26  Duncan Mak  <duncan@ximian.com>

	* doc/jit-debug: Update the links. Thanks for Andy Oliver for the report.

2003-01-22  Martin Baulig  <martin@ximian.com>

	* configure.in: Set version number to 0.19.1.

	Heads up: I'm going to commit some changes to the debugger
	which'll require you to use this new runtime, so if you update the
	debugger from CVS, you also need this new runtime.

2003-01-20  Duncan Mak  <duncan@ximian.com>

	* configure.in: Bump the release number to 0.19.
	  
2003-01-19  Daniel Morgan <danmorg@sc.rr.com>

	* doc/ibmdb2: added file which is new web page
	about IBM DB2 data provider at Mono.Data.DB2Client
	
	* makefile
	* commands: added ibmdb2 web page to go-mono web site
	
	* doc/ado-net: added a couple more developers email, plus made the
	email spam resistant, added Mono's DB2 data provider to list,
	added more info about the ProviderFactory and retrieving data using
	ADO.NET from ASP.NET, add notes about testing, misc cleanup
	
	* doc/mysql
	* doc/postgresql
	* doc/sqlclient
	* doc/oracle
	* doc/tdsclient
	* doc/firebird
	* doc/oledb
	* doc/odbc
	* doc/sybase
	* doc/sqlite: added testing notes and C# examples
	
	* doc/gtk-sharp: added links for GTK# for Windows
	
	* man/sqlsharp.1: added providers Npgsql and MySQLNet

2003-01-17  Duncan Mak  <duncan@ximian.com>

	* runtime/Makefile.am: Add the new Mono.Data.DB2Client.dll.

2003-01-16  Martin Baulig  <martin@ximian.com>

	* configure.in (GTHREAD_LIBS, GTHREAD_CFLAGS): Removed the gthread
	check again, we're now using the mono/io-layer for this.

Wed Jan 15 16:20:54 CET 2003 Paolo Molaro <lupus@ximian.com>

	* configure.in: allow MacOSX (from various people).

2003-01-14  Martin Baulig  <martin@ximian.com>

	* configure.in (GTHREAD_LIBS, GTHREAD_CFLAGS): Added check for gthread.

2002-12-27  Jeroen Janssen <japj@darius.demon.nl>
	* fixed url for System.Windows.Forms in the class status
	
2002-12-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* configure.in: moved struct tm field tm_gmtoff check before the check
	for timezone global variable. This makes Timezone work for me (debian
	sid, linux, x86, which has both the field and the global variables).

2002-12-10  Daniel Morgan <danmorg@sc.rr.com>

	* doc/oracle: added file which is
	a new web page oracle.html

	* doc/ado-net: clean up and add link
	to oracle.html
	
	* doc/web/commands
	* doc/web/makefile: added oracle.html

2002-12-10  Daniel Morgan <danmorg@sc.rr.com>

	* man/Makefile.am: changed sqlsharpcli.1 to sqlsharp.1
	
	* man/sqlsharpcli.1: renamed to sqlsharp.1

2002-12-09  Tim Haynes  <thaynes@openlinksw.co.uk>

	* mono/jit/jit.c
	* mono/metadata/icall.c: added mono_install_get_config_dir() to
	utilize the MONO_CFG_DIR environment variable for specifying
	different machine.configs.

2002-12-06  Duncan Mak  <duncan@ximian.com>

	* data/Makefile.am (EXTRA_DIST): Add machine.config
	(DISTCLEANFILES): Add config.

2002-11-30  Daniel Morgan <danmorg@sc.rr.com>

	* man/sqlsharpcli.1: added file - a man page 
	for SQL# CLI
	
	* man/Makefile.am: added sqlsharpcli.1 to man_MANS
	
2002-11-20  Daniel Morgan <danmorg@sc.rr.com>

	* doc/firebird: updated web page

2002-11-19  Mike Kestner <mkestner@speakeasy.net>

	* data/Config.in : added the gtk# dll mapping entries

2002-11-19  Daniel Morgan <danmorg@sc.rr.com>

	* doc/firebird: updated web page based on input
	from the firebird .net data provider author

Mon Nov 18 16:40:34 CET 2002 Paolo Molaro <lupus@ximian.com>

	* configure.in, mono/os/gc_wrapper.h: check that the gc headers have
	been installed.

2002-11-12  Daniel Morgan <danmorg@sc.rr.com>

	* doc/oledb
	* doc/odbc
	* doc/mysql
	* doc/sqlite
	* doc/sqlclient
	* doc/tdsclient
	* doc/sybase
	* doc/firebird: added web pages
	for each specific data provider
	
	* doc/ado-net
	* doc/postgresql: updated web page
	with current status
	
	* doc/web/commands
	* doc/web/makefile: updated to include
	new web pages

2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* autogen.sh: make it work when MONO_PATH is set and it has more than
	one directory or ends in ":". Also check that the directory added to
	ACLOCAL_FLAGS and PATH exist (aclocal fails if they don't).

2002-10-22  Miguel de Icaza  <miguel@ximian.com>

	* configure.in: Also allow the miss-spelled bohem.

2002-10-18  Daniel Morgan <danmorg@sc.rr.com>

	* doc/ado-net
	* doc/postgresql
	* doc/tds-providers: cleaned up the web pages
	
	* doc/web/commands: postgresql.html page was mistyped

2002-10-18  Daniel Morgan <danmorg@sc.rr.com>

	* doc/ado-net: updated status of
	the ADO.NET functionality and providers
	and added link to tds-providers.html

	* doc/tds-providers: added file to
	describe the design	and status of 
	the SqlClient, SybaseClient, and TdsClient
	ADO.NET providers.

	* doc/web/makefile
	* doc/web/command: added new web page 
	tds-providers.html to build of 	www.go-mono.com web site
	
2002-10-17  Daniel Morgan <danmorg@sc.rr.com>

	* doc/web/makefile
	* doc/web/commands:	web page 
	postgresql needed to be added

2002-10-13  Mark Crichton <crichton@gimp.org>

	* doc/index: Even more spelling errors fixed.

2002-10-13  Daniel Morgan <danmorg@sc.rr.com>

	* doc/adonet: updated status of all providers, added links, 
	  and added information
	  about the Mono.Data.SqliteClient provider that 
	  Vladimir Vukicevic contributed. Added Brian Ritchie's 
	  and Vladimir Vukicevic's email addresses as
	  people to contact about ADO.NET in Mono.  
	  Added information about SQL#, configuration tools, 
	  and an ADO.NET Multiplexor, etc...  

2002-10-10  Daniel Morgan <danmorg@sc.rr.com>

	* doc/index: corrected some mistypes
	
	* doc/adonet: updated the status and plans of all the ADO.NET providers
	  and moved PostgreSQL specific stuff to doc/postgresql

	* doc/postgresql: added new file to detail
	  the status of the PostgreSQL ADO.NET provider
	  and provide test notes for setting it up

2002-10-09  Daniel Morgan <danmorg@sc.rr.com>

	* data/config.in: add entry for MySQL native shared libraries
	  which are different on Windows and Linux

2002-10-04  Diego Sevilla Ruiz  <dsevilla@um.es>

	* doc/ccvs: Fixed some ugly formatting.

2002-10-03  Dick Porter  <dick@ximian.com>

	* acconfig.h:
	* configure.in:  Freebsd pthread_t is a pointer

2002-10-01  Duncan Mak  <duncan@ximian.com>

	* mono/os/Makefile.am: Add gc_wrapper.h.

	* runtime/Makefile.am: Fix the path for monoresgen.exe.

2002-09-27  Dick Porter  <dick@ximian.com>

	* configure.in: Check for semaphore.h.  Patch for BSD from
	jmmv@hispabsd.org (Julio Merino).

2002-09-20  Duncan Mak  <duncan@ximian.com>

	* data/config.in: Added reference to libxslt.

2002-09-20  Mark Crichton  <crichton@gimp.org>

	* configure.in: added NEED_LINK_UNLINK to make io-layer more portable.
	Linux has a "virtual fs" for UNIX sockets, Solaris and BSD don't.
	For systems that do not have such a virtual FS, define
	NEED_LINK_UNLINK.

	* acconfig.h: added NEED_LINK_UNLINK
	
Wed Sep 4 18:09:58 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* configure.in: add some needed defines to fix support of
	threads in the GC.

2002-09-19  Mark Crichton  <crichton@gimp.org>

	* configure.in: Added checks for Solaris to use X/Open functionality.
	Really needed for the io-layer code.

2002-09-15  Andrew Birkett  <andy@nobugs.org>

	* man/mcs.1: --probe is now --expect-error.

2002-09-09  Dick Porter  <dick@ximian.com>

	* acconfig.h: 
	* configure.in: Simplify thread checks, by using canned rules for
	particular systems (based on the sleepycat db configure.in).
	Tested on linux/x86, freebsd and w32.  Solaris also added, but I
	don't have a solaris machine to try it on.

2002-09-04  Juli Mallett  <jmallett@FreeBSD.org>

	* configure.in: Include <sys/types.h> when checking <sys/un.h> stuff.

2002-09-02  Diego Sevilla Ruiz  <dsevilla@um.es>

	* doc/ccvs: Added how to convert SSH keys (from SSH Communications
	Security) to the OpenSSH keys required by mono CVS
	access.

2002-09-01  Juli Mallett  <jmallett@FreeBSD.org>

	* configure.in, mono/interpreter/interp.c,
	mono/io-layer/handles.c, mono/io-layer/processes.c,
	mono/io-layer/threads.c, mono/io-layer/timed-thread.c,
	mono/io-layer/wait.c, mono/jit/helpers.c, mono/jit/jit.c,
	mono/metadata/appdomain.c, mono/metadata/class.c,
	mono/metadata/domain.c, mono/metadata/gc.c,
	mono/metadata/object.c, mono/metadata/reflection.c,
	mono/metadata/threads.c, mono/os/gc_wrapper.h,
	mono/utils/mono-hash.c: Add a new header, gc_wrapper.h, to
	wrap inclusion of gc.h for boehm, since from FreeBSD and
	OpenBSD ports, gc.h is <gc.h>, but on GNU it seems to be
	in <gc/gc.h>.  This will reduce the diffs FreeBSD ports has
	to apply, and also makes it possible for me to build with
	GC on OpenBSD/macppc built by hand.

2002-09-01  Juli Mallett  <jmallett@FreeBSD.org>

	* configure.in: On BSD don't try to use -ldl, we simply don't use it.

2002-09-01  Juli Mallett  <jmallett@FreeBSD.org>

	* mono/dis/dis-cil.c:
	* configure.in: Check for <wchar.h> via autoconf, don't use it if
	it isn't there, as it seems to work fine without it on OpenBSD.

2002-08-28  Dick Porter  <dick@ximian.com>

	* mono/os/win32/util.c: 
	* mono/os/unix/util.c: 
	* mono/os/util.h: mono_set_rootdir() doesnt take any args now.
	(It doesn't do anything on unix builds, and the w32 version no
	longer needs an arg.)

	* configure.in: Add HOST_CC for w32 builds

Tue Aug 27 18:17:43 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* configure.in: remove iconv checks.

2002-08-24  Juli Mallett  <jmallett@FreeBSD.org>

	* configure.in: Recognise OpenBSD/macppc as PowerPC.

Tue Aug 20 15:15:52 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* configure.in: patch by noa@metamatrix.se (Daniel Resare)
	to error out if bison is missing.

2002-08-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* configure.in: don't link against libdl on windoze.

2002-08-12  Dick Porter  <dick@ximian.com>

	* mono.pc.in: Add $includedir to Cflags

Fri Jul 19 18:38:38 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* configure.in, Makefile.am, mono.pc.in: add a mono.pc file for use
	with pkg-config.
	* */Makefile.am: makefile overhaul to create a shared libmono library.
	* */*.h: do not include config.h in headers that should be installed.

2002-07-12  Dick Porter  <dick@ximian.com>

	* acconfig.h:
	* configure.in: Check the size of sockaddr_un.sun_path

2002-06-23  Miguel de Icaza  <miguel@ximian.com>

	* man/Makefile.am (man_MANS): Added new man page

	* man/mono-config.5: New manual page describing the mono-config
	file format. 

2002-06-10  Jaroslaw Kowalski <jarek@atm.com.pl>

	* configure.in: added checks for MSG_NOSIGNAL

2002-05-30  Daniel Morgan <danmorg@sc.rr.com>

	* doc/ado-net: update the ado-net web page on go-mono.com
	input parameters support, beginnings of Mono.Data.MySQL 
	and System.Data.OleDb, updated the sample source code,
	and output from a PostgresTest

2002-05-21  Martin Baulig  <martin@gnome.org>

	* mono.1: Documented the "--debug-args" debugging arguments.

2002-05-21  Martin Baulig  <martin@gnome.org>

	* mono.1: Updated to reflect my latest changes and beautified this a bit.
	(FIXME: There are still command line argument which aren't documented here.)

2002-05-19  Daniel Morgan <danmorg@sc.rr.com>

	* doc/ado-net: updated page to include C# code snippets using
	System.Data.  Update status: handle reading NULL values, DataSet/DataAdapter
	works, executing/reading multiple results, and stored procedures.
	And other tweaks about the providers.  

2002-05-19  Martin Baulig  <martin@gnome.org>

	* mono/Makefile.am (SUBDIRS): Added `os', it's referenced by
	interpreter/Makefile.am.

Wed May 15 12:22:09 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* configure.in: search for pthread functions also in libc_r (patch
	from Garrett Rooney <rooneg@electricjellyfish.net>).

2002-05-11  Daniel Morgan <danmorg@sc.rr.com>

	* doc/ado-net: added instructions for installing PostgreSQL on Linux
	and for using nant to re-compile just the System.Data.dll assembly
	on Windows.

2002-05-10  Rodrigo Moya <rodrigo@ximian.com>

	* doc/ado-net: added instructions for compiling System.Data.dll
	(a subset of) on Linux.

2002-05-10  Daniel Morgan <danmorg@sc.rr.com>

	* doc/ado-net: added links

2002-05-09  Dick Porter  <dick@ximian.com>

	* configure.in: Set CPPFLAGS not CFLAGS (bug 23767)

2002-05-05  Daniel Morgan <danmorg@sc.rr.com>

	* doc/ado-net: correct formatting
	* doc/index: added credit i forgot to add

2002-05-05  Daniel Morgan <danmorg@sc.rr.com>

	* doc/ado-net: i did not format it correctly earlier, i 
	tried added various tags where appropriate.
	
	* doc/index: added news item for May 5, 2002 - ado.net able
	to retrieve data now

2002-05-05  Daniel Morgan <danmorg@sc.rr.com>

	* doc/ado-net: updated the current status which
	I kept forgetting to do.

2002-05-05  Daniel Morgan <danmorg@sc.rr.com>

	* doc/ado-net: updated to includes an example for
	running ipc-daemon as a	Windows service.  Thanks
	to gonzalo.

2002-05-05  Daniel Morgan <danmorg@sc.rr.com>

	* doc/ado-net: updated to include installation of
	PostgreSQL DBMS under cygwin.  It is a TODO for Linux though.
	Also included notes on running the System.Data/Test/PostgresTest.cs
	that should work on a lot of Mono installations that have
	PostgreSQL installed.  If not please let me, rodrigo, or gonzalo
	know.

2002-05-01  Rodrigo Moya <rodrigo@ximian.com>

	* doc/ado-net: updated a little bit.

2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>

	* configure.in: Added checks for timezone stuff.

2002-04-30  Dick Porter  <dick@ximian.com>

	* acconfig.h:
	* configure.in: Added option to disable using shared memory for
	handles

2002-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* configure.in: fix for conditional "THREADS_PTHREAD" was never 
	defined problem under cygwin with latest version of automake and
	autoconf. Patch from Jeroen Janssen <japj@darius.demon.nl>.

2002-04-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* configure.in: removed -Wshadow from CFLAGS.

2002-04-12  Rodrigo Moya <rodrigo@ximian.com>

	* status/maintainers.xml: added danmorg and myself for System.Data.*
	classes.

	* status/class.xml: added System.Data.* classes.

2002-04-08  Dick Porter  <dick@ximian.com>

	* configure.in: Set -mno-cygwin here rather than in the build script

2002-04-05  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/remoting2.cs: new test for async invoke of proxy calls

2002-03-29  Martin Baulig  <martin@gnome.org>

	* doc/jit-debug, docs/jit-debug-sample, docs/jit-debug-sample2:
	New files, added documentation for the debugging code.

	* doc/web/commands: Added the debugging pages.

	* docs/jit-debug: Removed, this is now on the web site.

2002-03-24  Martin Baulig  <martin@gnome.org>

	* man/mcs.1: Documented the new --debug option and added a section
	about debugging support.

	* man/mono.1: Documented the new --dwarf and --dwarf-plus options.

2002-03-21  Martin Baulig  <martin@gnome.org>

	* configure.in: Added check for <elf.h>.

2002-03-18  Dick Porter  <dick@ximian.com>

	* configure.in: Only look for libgc on the system.  Default to not
	using GC at all, because it doesn't work with the jit.

2002-03-17  Miguel de Icaza  <miguel@ximian.com>

	* configure.in: Add support for building the included boehm GC.

Thu Mar 7 17:19:44 CET 2002 Paolo Molaro <lupus@ximian.com>

	* configure.in: detect Boehm GC libs and add --with-gc switch.
	Boehm GC needs to be explicitly enabled since the JIT currently fails
	in some cases with it.

2002-02-27  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/fib.cs: it is now possible to pass a repeat count as
	command line argument, for example fib.exe 20 runs the test 20
	times. 

2002-02-25  Sergey Chaban  <serge@wildwestsoftware.com>
	* configure.in: added support for ARM target arch.
	Uncommented and modified arm-*-linux* target,
	added mono/arch/arm/Makefile to AC_OUTPUT list.

2002-02-21  Mark Crichton  <crichton@gimp.org>

	* status/class.xml: Added contact info for RNGCryptoServiceProvider
	class and Rijndael classes.
	* status/maintainers.xml: Added contact info to maintainers list.

2002-02-21  Mark Crichton  <crichton@gimp.org>
 
        * configure.in: Add checks for a system-provided entropy device
        * acconfig.h: Added HAVE_CRYPT_RNG and NAME_DEV_RANDOM

2002-02-20  Dick Porter  <dick@ximian.com>

	* acconfig.h:
	* configure.in: Always build without cygwin support on windows

2002-02-19  Radek Doulik  <rodo@ximian.com>

	* mono/tests/pinvoke.cs: use more pinvoke test methods

2002-02-19  Radek Doulik  <rodo@ximian.com>

	* mono/tests/libtest.c (mono_test_many_short_arguments): new test
	method
	(mono_test_many_byte_arguments): ditto

2002-02-18  Radek Doulik  <rodo@ximian.com>

	* mono/tests/Makefile.am: added small test library for pinvoke
	testing

	* mono/tests/libtest.c (mono_test_many_int_arguments): new file,
	new function to test pinvoke

	* mono/tests/pinvoke.cs (Test): added pinvoked method with 10 int
	arguments

	* mono/tests/Makefile.am: display # of passing tests too
	added simple shared library libtest with testing function for
	pinvoke

2002-02-17  Radek Doulik  <rodo@ximian.com>

	* mono/tests/Makefile.am (test): display # of failed tests

2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>

	* configure.in: Add checks for SOL_IP, SOL_TCP, and
	IP_PKTINFO. Also check for struct ip_mreqn.

2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>

	* configure.in: Add checks to see if we need to link to libsocket,
	libnsl, and/or librt. Also check for inet_pton and inet_aton.

2002-02-13  Jeffrey Stedfast  <fejj@ximian.com>

	* acconfig.h: #undef USE_MONO_MUTEX

	* configure.in: If the system pthread implementation is lacking,
	default to using mono-mutex.

2002-02-05  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/enum2.cs: new file with more enum tests.

2002-02-01  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/jit-long.cs: added some SHL/SHR tests

Fri Feb 1 15:32:36 CET 2002 Paolo Molaro <lupus@ximian.com>

	* configure.in: allow PKG_CONFIG_PATH for the build-platform
	pkg-config invocation.

Fri Feb 1 15:13:25 CET 2002 Paolo Molaro <lupus@ximian.com>

	* configure.in: add some support/fixes for cross-compilation.

2002-01-14  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/exception6.cs: new tests for ADD_OVF, MUL_OVF
	added tests for SUB_OVF, SUB_OVF_UN

2001-12-21  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/Makefile.am (TESTSRC): disabled stream-writer test

2001-12-21  Aaron Weber  <aaron@ximian.com>

	* doc/faq (A): added a linebreak that was missing and was causing
	a heading to appear badly.

2001-12-20  Aaron Weber  <aaron@ximian.com>

	* doc/faq: added <a name=""> nav links, and moved all MSFT-related
	questions into a single section.

2001-12-17  Aaron Weber  <aaron@ximian.com>

	* doc/faq (Q): Question-by-question, line-by-line revision.

2001-12-17  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/time.cs: new test

2001-11-30  Radek Doulik  <rodo@ximian.com>

	* configure.in: remove ACCESS_UNALIGNED="no" from ppc

2001-11-29  Radek Doulik  <rodo@ximian.com>

	* configure.in (ACCESS_UNALIGNED): uncommented and modified
	powerpc-*-linux* 
	generate mono/arch/ppc/Makefile

2001-11-26  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/exception3.cs: modified the test to show a bug in the
	current exception handling implementation.

2001-11-13  Dick Porter  <dick@ximian.com>

	* configure.in: Some more tests for pthread features
	(specifically, glibc 2.1 doesnt define pthread_mutex_timedlock but
	still needs _GNU_SOURCE for PTHREAD_MUTEX_RECURSIVE)

2001-11-09  Dick Porter  <dick@ximian.com>

	* configure.in: Try and get large file support, but it's not fatal
	if it's not there (the io-layer just ignores the high word in that
	case.)

	Check for windows builds, and only bother to look for pthreads and
	large files if we're not building for cygwin or native win32.  Not
	having pthread support on Posix systems is now a fatal error.

	* autogen.sh: Fix ACLOCAL_FLAGS - it wasn't being passed to
	aclocal

2001-10-15  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/Makefile.am: removed JITTESTS, simply run all tests for
	target testjit. 

2001-10-11  Dietmar Maurer  <dietmar@ximian.com>

	* docs/object-layout: more documentation

Mon Oct 8 20:27:50 CEST 2001 Paolo Molaro <lupus@ximian.com>

	* configure.in: define NO_UNALIGNED_ACCESS for platforms that
	can't read on unaligned boundaries

2001-10-04  Dick Porter  <dick@ximian.com>

	* configure.in: Do some deeper checks on pthreads for some of the
	more interesting functions

2001-09-24  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/Makefile.am (testjit): a new target to test the JITer

	* mono/tests/jit-*: added some test for the JITer

2001-09-23  Dick Porter  <dick@ximian.com>

	* configure.in: Arrange to compile dummy thread support routines
	if pthread isnt available
	
2001-09-23  Dick Porter  <dick@ximian.com>

	* configure.in: Check for pthread.h, so that we can check for the
	HAVE_PTHREAD_H define in config.h

2001-09-21  Dick Porter  <dick@ximian.com>

	* configure.in: Check for libpthread

2001-09-19  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/test-ops.cs: added more tests

Mon Sep 10 20:19:00 CEST 2001 Paolo Molaro <lupus@ximian.com>

	* configure.in: check for sizeof(void*) and for the architecture.

2001-09-05  Dick Porter  <dick@ximian.com>

	* autogen.sh: Fixed the section that adds $ACLOCAL_FLAGS to the
	aclocal invocation, so putting aclocal files in /usr/local works

2001-08-30  Dietmar Maurer  <dietmar@ximian.com>

	* *: removed the libffi dependency, mono now compiles on cygwin 

	* mono/wrapper/build-dll: new file.

2001-08-28  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/console.cs: impl.

	* mono/tests/box.cs: impl.

	* mono/tests/stream-writer.cs: impl.

Mon Aug 27 20:24:26 CEST 2001 Paolo Molaro <lupus@ximian.com>

	* mono/tests/*: New test cases, mostly for virtual method dispatch.
	Use make testb for the slow benchmarking programs,
	make test for the usual regression test checks.

2001-08-22  Rodrigo Moya <rodrigo@ximian.com>

	* mono/cil/Makefile.am:
	* mono/wrapper/Makefile.am: use correct variables for installation
	directories

Tue Aug 21 18:54:06 CEST 2001 Paolo Molaro <lupus@ximian.com>

	* mono/tests/exceptions*: enhanced and added more tests for
	exceptions.

2001-08-20  Miguel de Icaza  <miguel@ximian.com>

	* mono/Makefile.am (SUBDIRS): Remove `test' from here to allow us
	to pass make distcheck

	* mono/wrapper/Makefile.am (EXTRA_DIST): Include genwrapper.pl

	* configure.in, Makefile.am, runtime/Makefile.am (dist-hook,
	install-data-hook): Added mechanism to distribute and install the
	dll files.

2001-08-20  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/stream.cs: new tests for the Stream class

	* configure.in: I really need LIBTOOL for libmonowrapper.so, so I
	added it again.

2001-08-16  Alex Graveley  <alex@ximian.com>

	* configure.in: Replace AM_PROG_LIBTOOL with AC_PROG_RANLIB. This
	removes libtool dependency on all of Mono.

2001-08-10  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/array.cs: more array tests

2001-08-09  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/array.cs: more array tests

2001-08-06  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/pinvoke.cs: we can now print strings ;-)

	* mono/tests/array.cs: new test for arrays

2001-08-02  Alex Graveley  <alex@ximian.com>

        * libffi/*: Import libffi CVS version, with minor changes to make it 
          compile.

        * mono/interpreter/Makefile.am: Link against 
          ../../libffi/.libs/libffi.a.

        * Makefile.am: Add libffi

        * autogen.sh: Replace with adapted gnome autogen.sh

        * configure.in: Add AC_CONFIG_SUBDIRS(libffi).

2001-08-02  Dietmar Maurer  <dietmar@ximian.com>

	* mono/tests/pinvoke.cs: impl.

Wed Aug 1 22:34:52 CEST 2001 Paolo Molaro <lupus@ximian.com>

	* configure.in, mono/tests: added some tests for the interpreter.

2001-07-15  Sean MacIsaac  <macisaac@ximian.com>

	* doc/download: added instructions for cygwin
	
	* doc/c-sharp: removed bit about compiling
	
	* status/compare-assembly.cs: basedir should be there if
	parameters are provided.

	* status/makefile: made targets to dump info.
	
2001-07-15  Joe Shaw  <joe@ximian.com>

	* configure.in: Don't create doc/Makefile as there's nothing there
	to make.

	* Makefile.am: Don't build the doc directory because there's no
	Makefile.am there.

	* autogen.sh: Call aclocal with the $ACLOCAL_FLAGS env var.

2001-07-15  Miguel de Icaza  <miguel@ximian.com>

	* doc/class-library (A): Updated FAQ with question on error 1595.

2001-07-14  Miguel de Icaza  <miguel@ximian.com>

	* doc/index: 

Wed Jul 11 00:36:36 CEST 2001 Paolo Molaro <lupus@ximian.com>

	* status/*: scripts and data to create statistics about the
	class library status.

2001-07-09  Alex Graveley  <alex@ximian.com>

	* doc/makefile (clean): Add clean target.
	* doc/web/makefile (clean): Ditto.

2001-07-09  Alex Graveley  <alex@ximian.com>

	* doc/makefile (all-docs): Fix typo.

2001-05-30  Miguel de Icaza  <miguel@ximian.com>

	* NEWS: