summaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: e779e5bc25a743449ab21201d2b3606ec95360c7 (plain) (blame)
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
2011-12-13	Ralf Corsépius <ralf.corsepius@rtems.org>

	* compile, depcomp, mdate-sh, texinfo.tex: 
	Update from automake-1.11.1b.

2011-11-09	Joel Sherrill <joel.sherrill@oarcorp.com>

	* MAINTAINERS: Rewrite and update.

2011-11-08	Gedare Bloom <gedare@rtems.org>

	* MAINTAINERS: Revert adding myself as a maintainer.

2011-11-06	Gedare Bloom <gedare@rtems.org>

	* ChangeLog: Fix ChangeLog with name and email address

2011-11-06	Gedare Bloom <gedare@rtems.org>

	* MAINTAINERS: Fix whitespace.

2011-11-04	Gedare Bloom <gedare@rtems.org>

	* MAINTAINERS: Add myself as maintainer

2011-10-20	Ralf Corsépius <ralf.corsepius@rtems.org>

	* MAINTAINERS: Remove references to c4x, or32 (abandoned).

2011-10-03	Ralf Corsépius <ralf.corsepius@rtems.org>

	* depcomp, compile, texinfo.tex, mdate-sh: New.
	* bootstrap (-c): Don't remove depcomp, compile, texinfo.tex,
	mdate-sh.

2011-05-24	Joel Sherrill <joel.sherrill@oarcorp.com>

	PR 1810/misc
	* ChangeLog: Fix previous damage.

2011-06-17	Ralf Corsépius <ralf.corsepius@rtems.org>

	* Makefile.am: Remove make/host.cfg.in.

2011-05-24	Joel Sherrill <joel.sherrill@oarcorp.com>

	PR 1810/misc
	* ChangeLog: Fix previous damage.

2011-05-17	Joel Sherrill <joel.sherrill@oarcorp.com>

	* tools/build/.cvsignore, tools/build/ChangeLog,
	tools/build/Makefile.am, tools/build/README, tools/build/binpatch.c,
	tools/build/cklength.c, tools/build/config.h.in,
	tools/build/configure.ac, tools/build/cvsignore-add.sh,
	tools/build/doxy-filter, tools/build/eolstrip.c,
	tools/build/install-if-change.in, tools/build/multigen,
	tools/build/packhex.c, tools/build/rtems-bin2c.c,
	tools/build/search-id.sh, tools/build/unhex.c, tools/cpu/.cvsignore,
	tools/cpu/ChangeLog, tools/cpu/Makefile.am, tools/cpu/configure.ac,
	tools/cpu/generic/.cvsignore, tools/cpu/generic/ChangeLog,
	tools/cpu/generic/Makefile.am, tools/cpu/generic/configure.ac,
	tools/cpu/generic/size_rtems.in, tools/cpu/nios2/.cvsignore,
	tools/cpu/nios2/ChangeLog, tools/cpu/nios2/Makefile.am,
	tools/cpu/nios2/README, tools/cpu/nios2/bridges.c,
	tools/cpu/nios2/bridges.h, tools/cpu/nios2/clocks.c,
	tools/cpu/nios2/clocks.h, tools/cpu/nios2/configure.ac,
	tools/cpu/nios2/devices.c, tools/cpu/nios2/devices.h,
	tools/cpu/nios2/linkcmds.c, tools/cpu/nios2/linkcmds.h,
	tools/cpu/nios2/memory.c, tools/cpu/nios2/memory.h,
	tools/cpu/nios2/nios2gen.c, tools/cpu/nios2/output.c,
	tools/cpu/nios2/output.h, tools/cpu/nios2/ptf.c,
	tools/cpu/nios2/ptf.h, tools/cpu/nios2/sample.ptf,
	tools/cpu/sh/.cvsignore, tools/cpu/sh/AUTHORS, tools/cpu/sh/COPYING,
	tools/cpu/sh/ChangeLog, tools/cpu/sh/Makefile.am, tools/cpu/sh/TODO,
	tools/cpu/sh/configure.ac, tools/cpu/sh/sci.c, tools/cpu/sh/sci.h,
	tools/cpu/sh/shgen.c: New files.
	Readded after mistakenly removing them.

2011-05-17	Joel Sherrill <joel.sherrill@oarcorp.com>

	* tools/build/.cvsignore, tools/build/ChangeLog,
	tools/build/Makefile.am, tools/build/README, tools/build/binpatch.c,
	tools/build/cklength.c, tools/build/configure.ac,
	tools/build/cvsignore-add.sh, tools/build/doxy-filter,
	tools/build/eolstrip.c, tools/build/install-if-change.in,
	tools/build/multigen, tools/build/packhex.c,
	tools/build/rtems-bin2c.c, tools/build/search-id.sh,
	tools/build/unhex.c, tools/cpu/.cvsignore, tools/cpu/ChangeLog,
	tools/cpu/Makefile.am, tools/cpu/configure.ac,
	tools/cpu/generic/.cvsignore, tools/cpu/generic/ChangeLog,
	tools/cpu/generic/Makefile.am, tools/cpu/generic/configure.ac,
	tools/cpu/generic/size_rtems.in, tools/cpu/nios2/.cvsignore,
	tools/cpu/nios2/ChangeLog, tools/cpu/nios2/Makefile.am,
	tools/cpu/nios2/README, tools/cpu/nios2/bridges.c,
	tools/cpu/nios2/bridges.h, tools/cpu/nios2/clocks.c,
	tools/cpu/nios2/clocks.h, tools/cpu/nios2/configure.ac,
	tools/cpu/nios2/devices.c, tools/cpu/nios2/devices.h,
	tools/cpu/nios2/linkcmds.c, tools/cpu/nios2/linkcmds.h,
	tools/cpu/nios2/memory.c, tools/cpu/nios2/memory.h,
	tools/cpu/nios2/nios2gen.c, tools/cpu/nios2/output.c,
	tools/cpu/nios2/output.h, tools/cpu/nios2/ptf.c,
	tools/cpu/nios2/ptf.h, tools/cpu/nios2/sample.ptf,
	tools/cpu/sh/.cvsignore, tools/cpu/sh/AUTHORS, tools/cpu/sh/COPYING,
	tools/cpu/sh/ChangeLog, tools/cpu/sh/Makefile.am, tools/cpu/sh/TODO,
	tools/cpu/sh/configure.ac, tools/cpu/sh/sci.c, tools/cpu/sh/sci.h,
	tools/cpu/sh/shgen.c, tools/schedsim/.cvsignore,
	tools/schedsim/ChangeLog, tools/schedsim/Makefile.am,
	tools/schedsim/README, tools/schedsim/configure.ac,
	tools/schedsim/rtems/.cvsignore, tools/schedsim/rtems/ChangeLog,
	tools/schedsim/rtems/Makefile.am, tools/schedsim/rtems/interr.c,
	tools/schedsim/rtems/rtems_init.c,
	tools/schedsim/rtems/rtems_sched.h, tools/schedsim/rtems/wkspace.c,
	tools/schedsim/rtems/sched_cpu/cpu.c,
	tools/schedsim/rtems/sched_cpu/cpu_asm.c,
	tools/schedsim/rtems/sched_cpu/rtems/asm.h,
	tools/schedsim/rtems/sched_cpu/rtems/stringto.h,
	tools/schedsim/rtems/sched_cpu/rtems/score/cpu.h,
	tools/schedsim/rtems/sched_cpu/rtems/score/cpu_asm.h,
	tools/schedsim/rtems/sched_cpu/rtems/score/cpuopts.h,
	tools/schedsim/rtems/sched_cpu/rtems/score/no_cpu.h,
	tools/schedsim/rtems/sched_cpu/rtems/score/types.h,
	tools/schedsim/shell/.cvsignore, tools/schedsim/shell/ChangeLog,
	tools/schedsim/shell/Makefile.am,
	tools/schedsim/shell/schedsim_priority/.cvsignore,
	tools/schedsim/shell/schedsim_priority/Makefile.am,
	tools/schedsim/shell/schedsim_priority/config.c,
	tools/schedsim/shell/schedsim_priority/printheir_executing.c,
	tools/schedsim/shell/schedsim_priority/schedsim.cc,
	tools/schedsim/shell/schedsim_priority/wrap_thread_dispatch.c,
	tools/schedsim/shell/scripts/script01,
	tools/schedsim/shell/scripts/script02,
	tools/schedsim/shell/scripts/script03,
	tools/schedsim/shell/scripts/script04,
	tools/schedsim/shell/scripts/script05,
	tools/schedsim/shell/scripts/script06,
	tools/schedsim/shell/shared/.cvsignore,
	tools/schedsim/shell/shared/Makefile.am,
	tools/schedsim/shell/shared/commands.c,
	tools/schedsim/shell/shared/getopt.c,
	tools/schedsim/shell/shared/lookup_semaphore.c,
	tools/schedsim/shell/shared/lookup_task.c,
	tools/schedsim/shell/shared/main_clocktick.c,
	tools/schedsim/shell/shared/main_echo.c,
	tools/schedsim/shell/shared/main_executing.c,
	tools/schedsim/shell/shared/main_heir.c,
	tools/schedsim/shell/shared/main_help.c,
	tools/schedsim/shell/shared/main_rtemsinit.c,
	tools/schedsim/shell/shared/main_semcreate.c,
	tools/schedsim/shell/shared/main_semdelete.c,
	tools/schedsim/shell/shared/main_semflush.c,
	tools/schedsim/shell/shared/main_semobtain.c,
	tools/schedsim/shell/shared/main_semrelease.c,
	tools/schedsim/shell/shared/main_taskcreate.c,
	tools/schedsim/shell/shared/main_taskdelete.c,
	tools/schedsim/shell/shared/main_taskmode.c,
	tools/schedsim/shell/shared/main_taskpriority.c,
	tools/schedsim/shell/shared/main_taskresume.c,
	tools/schedsim/shell/shared/main_tasksuspend.c,
	tools/schedsim/shell/shared/main_taskwakeafter.c,
	tools/schedsim/shell/shared/schedsim_shell.h,
	tools/schedsim/shell/shared/shell_cmdset.c,
	tools/schedsim/shell/shared/shell_makeargs.c,
	tools/schedsim/shell/shared/include/shell.h,
	tools/schedsim/shell/shared/include/newlib/_ansi.h,
	tools/schedsim/shell/shared/include/newlib/getopt.h: Removed.

	* configure.ac: RTEMS Scheduler Simulator is now in its own CVS module
	named rtems-schedsim.

2011-04-21	Jennifer Averett <Jennifer.Averett@OARcorp.com

	PR 1777/cpukit
	* tools/schedsim/rtems/rtems_init.c: Consolidated access to
	_Thread_Dispatch_disable_level.

2011-03-16	Jennifer Averett <jennifer.averett@OARcorp.com>

	PR 1729/cpukit
	* aclocal/enable-smp.m4: New file.

2011-03-14	Joel Sherrill <joel.sherrilL@OARcorp.com>

	* Makefile.maint: Remove started_ada.

2011-03-06	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/rtems-top.m4: Add pkgdatadir.
	Override pkgdatadir to $(datadir)/rtems$_RTEMS_API.
	* Makefile.am: Install make/Templates to pkgdatadir.

2011-03-04	Ralf Corsépius <ralf.corsepius@rtems.org>

	* Makefile.am: Merge-in make/Makefile.am.
	* configure.ac: Reflect change above.

2011-03-04	Ralf Corsépius <ralf.corsepius@rtems.org>

	* Makefile.maint, aclocal/rpm.m4, aclocal/rtems-top.m4,
	aclocal/version.m4: Rename RTEMS_API into _RTEMS_API.

2011-03-03	Ralf Corsépius <ralf.corsepius@rtems.org>

	* bootstrap: Add -g option.
	Switch default to autoreconf.

2011-02-02	Ralf Corsépius <ralf.corsepius@rtems.org>

	* configure.ac: Require autoconf-2.68, automake-1.11.1.

2011-01-26	Ralf Corsépius <ralf.corsepius@rtems.org>

	* configure.ac: Don't build tools/schedsim by default.
	Add --enable-schedsim (Default: disabled).

2010-12-17	Joel Sherrill <joel.sherrill@oarcorp.com>

	Add RTEMS Scheduler Simulator.
	* configure.ac: Add tools/schedsim.

2010-12-16	Joel Sherrill <joel.sherrilL@OARcorp.com>

	* SUPPORT: Update address.

2010-09-27	Ralf Corsépius <ralf.corsepius@rtems.org>

	* README.configure: Further cleanup.

2010-09-26	Ralf Corsépius <ralf.corsepius@rtems.org>

	* README.configure: Remove the most obsolete parts.

2010-07-27	Joel Sherrill <joel.sherrill@oarcorp.com>

	PR 1532/testing
	* aclocal/project-root.m4: Add initial tests for untar capabilities.

2010-06-23	Ralf Corsépius <ralf.corsepius@rtems.org>

	* configure.ac: autoconf >= 2.65, automake >= 1.11.

2010-06-21	Joel Sherrill <joel.sherrill@oarcorp.com>

	* Makefile.maint, README.configure: Remove more ITRON references.

2010-06-17	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/enable-itron.m4: Remove.
	* configure.ac: Remove itron.

2010-06-07	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/version.m4: Bump RTEMS_API to 4.11.
	Bump _RTEMS_VERSION to 4.10.99.0.

2010-05-11	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/bsp-alias.m4: Change quoting to work-round
	http://www.freebsd.org/cgi/query-pr.cgi?pr=146378.

2009-10-23	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/check-custom-bsp.m4: Be less verbose.

2009-10-21	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/bsp-alias.m4: Fix quoting bug.

2009-10-17	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/check-custom-bsp.m4:
	Remove "${srcdir}/${RTEMS_TOPdir}/make/custom/$1".
	* aclocal/check-bsps.m4: Remove "blacklist".

2009-10-16	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/bsp-alias.m4: Remove bare BSP (Abandoned).

2009-10-16	Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>

	* README.configure: added COBRA5475 reference

2009-10-16	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/bsp-alias.m4: Pickup bsps from
	c/src/lib/libbsp/<cpu>/<bsp_family>/make/custom*.cfg.

2009-10-15	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/check-bsps.m4: Pickup bsps from
	c/src/lib/libbsp/<cpu>/<bsp_family>/make/custom*.cfg.

2009-10-15	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/check-custom-bsp.m4: Let _RTEMS_CHECK_CUSTOM_BSP look for
	*.cfg into c/src/lib/libbsp/<cpu>/<bsp_family>/make/custom.

2009-10-14	Ralf Corsepius <ralf.corsepius@rtems.org>

	* aclocal/canonical-target-name.m4, aclocal/enable-posix.m4:
	Remove posix/unix simulator.

2009-10-04	Sebastian Huber <sebastian.huber@embedded-brains.de>

	* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Renamed LPC24XX BSP
	variants.

2009-10-01	Joel Sherrill <joel.sherrill@oarcorp.com>

	* aclocal/bsp-alias.m4: Add BSP for GDB ARM simulator so we can easily
	experiment with and debug different ARM architectural variations.

2009-09-14	Ralf Corsepius <ralf.corsepius@rtems.org>

	* aclocal/check-bsps.m4: Add csb337 bsp family.

2009-07-23	Ralf Corsepius <ralf.corsepius@rtems.org>

	* aclocal/enable-itron.m4: Default to not building itron.

2009-05-28	Joel Sherrill <joel.sherrill@OARcorp.com>

	* aclocal/bsp-alias.m4: Add csb637 as variant of csb337.

2009-02-27	Sebastian Huber <sebastian.huber@embedded-brains.de>

	* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Added defines for
	LPC2478 BSP variants.

2009-02-19	Joel Sherrill <joel.sherrill@oarcorp.com>

	* aclocal/bsp-alias.m4: Add simsh2e.

2009-02-06	Ralf Corsépius <ralf.corsepius@rtems.org>

	* Makefile.maint: rtems_api=4.10.
	* Makefile.maint: Dump stuff hanging around for much too long.

2009-02-06	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/canonical-target-name.m4:
	Remove comment referring to HPUX9.

2009-02-05	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Remove pck6 BSP.

2008-12-31	Ralf Corsépius <ralf.corsepius@rtems.org>

	* config-ml.in: Comment out arm/thumb exception (Add arm/thumb
	multilib).

2008-12-30	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/check-bsps.m4: remove stray ")" from rtl22xx_t alias.

2008-12-22	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/canonical-target-name.m4: Remove tic4x.

2008-12-04	Jukka Pietarinen <jukka.pietarinen@mrf.fi>

	* README.configure: Add Lattice Mico32 support.

2008-10-14	Joel Sherrill <joel.sherrill@oarcorp.com>

	* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Add h8sxsim as variant
	of h8sim.

2008-10-02	Joel Sherrill <joel.sherrill@oarcorp.com>

	* README.configure: Add new M32R port. It is just a beginning but the
	BSP is functional enough to initialize and shutdown RTEMS.

2008-10-02	Joel Sherrill <joel.sherrill@oarcorp.com>

	* README.configure, aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Add
	M32C port and m32csim BSP.

2008-10-01	Joel Sherrill <joel.sherrill@oarcorp.com>

	* VERSION: Bump version to 4.9.99.0

2008-10-01	Ralf Corsépius <ralf.corsepius@rtems.org>

	PR 1324/bsps
        * aclocal/check-bsps.m4: Revert Joel's icecube patch.

2008-09-29	Ralf Corsépius <ralf.corsepius@rtems.org>

	* MAINTAINERS: Remove myself from avr.

2008-09-25	Joel Sherrill <joel.sherrill@oarcorp.com>

	* README.configure, aclocal/bsp-alias.m4, aclocal/check-bsps.m4:
	Recognize the the GDB SuperH simulator is just an architectural
	simulator and does not include devices. Rename existing simulator BSP
	configurations to simsh1 and simsh2 and add simsh4.

2008-09-24	Ralf Corsépius <ralf.corsepius@rtems.org>

	PR 1324/bsps
	* aclocal/check-bsps.m4: Add missing icecube.

2008-09-22	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/version.m4: Bump RTEMS_API to 4.10.
	Bump _RTEMS_VERSION to 4.9.99.0.

2008-09-22	Sebastian Huber <sebastian.huber@embedded-brains.de>

	* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Added defines for
	LPC2478 BSP.

2008-09-09	Joel Sherrill <joel.sherrill@oarcorp.com>

	* README.configure: Updated list of BSPs.

2008-09-08	Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>

	* make/custom/pghplus.cfg, make/custom/tqm8xx_stk8xx.cfg, 
	* make/custom/tqm8xx.cfg,
	* aclocal/bsp-alias.m4, aclocal/check-bsps.m4:
	added MPC8xx based tqm8xx BSP family

2008-07-27	Ralf Corsépius <ralf.corsepius@rtems.org>

	* acinclude.m4 (_RTEMS_OUTPUT_SUBDIRS): Allow empty configdirs.

2008-07-27	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Remove doxygen
	comments.
	* aclocal/rtems-top.m4: Require AC_DISABLE_OPTION_CHECKING.
	AC_PREREQ(2.62).

2008-07-14	Sebastian Huber <sebastian.huber@embedded-brains.de>

	* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Added MPC5566EVB and
	MPC8313ERDB.  Added Doxygen style comment.

2008-07-14	Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>

	* make/custom/haleakala.cfg:
	added PPC405 haleakala BSP contributed by Michael Hamel

2008-07-09	Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>

	* aclocal/bsp-alias.m4, aclocal/check-bsps.m4,
	* make/custom/m5484FireEngine.cfg:
	added pgh360 BSP variant
	added m5484FireEngine BSP

2008-06-01	Ralf Corsépius <ralf.corsepius@rtems.org>

	* configure.ac, acinclude.m4: s/AC_HELP/AS_HELP/.

2008-04-14	Ralf Corsépius <ralf.corsepius@rtems.org>

	* bootstrap: Use find . ... preinstall.am for portability reasons.

2008-02-20	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/enable-cxx.m4, aclocal/enable-itron.m4,
	aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4,
	aclocal/enable-posix.m4, aclocal/enable-rtems-debug.m4,
	aclocal/enable-rtemsbsp.m4, aclocal/enable-tests.m4,
	aclocal/multilib.m4: s/AC_HELP/AS_HELP/.

2007-11-06	Ray Xu <rayx.cn@gmail.com>

	* aclocal/bsp-alias.m4, aclocal/check-bsps.m4:

2007-09-21	Ralf Corsépius <ralf.corsepius@rtems.org>

	* VERSION: Bump VERSION to 4.8.99.0.
	* aclocal/version.m4: Bump RTEMS_API to 4.9.
	Bump RTEMS_VERSION to 4.8.99.0.

2007-09-04	Joel Sherrill <joel.sherrill@OARcorp.com>

	* Makefile.maint: touch all documentation master files so the date on
	the manual reflects the release date of the software.

2007-08-07	Joel Sherrill <joel.sherrill@OARcorp.com>

	* Makefile.maint: Add touching master files for various manuals so the
	date on the cover page will reflect the date a tarball is cut.

2007-08-06	Joel Sherrill <joel.sherrill@OARcorp.com>

	* README.configure, aclocal/bsp-alias.m4: Rename EP5200 to IceCube
	since that is the nickname for the Freescale evaluation board it is
	based upon. BSP was tested on a Freescale MPC5200LITE.

2007-08-02	Joel Sherrill <joel.sherrill@OARcorp.com>

	* Makefile.maint, configure.ac, release_support: Remove RDBG.
	* aclocal/enable-rdbg.m4: Removed.

2007-07-09	Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>

	* aclocal/bsp-alias.m4, aclocal/check-bsps.m4, README.configure:
	Add gen83xx and mpc8349eamds BSP 

2007-07-02	Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>

	* README.configure: Add virtex BSP

2007-06-20	Joel Sherrill <joel.sherrill@oarcorp.com>

	* aclocal/bsp-alias.m4, README.configure: Add ep5200, IceCube, 5200Lite.

2007-06-12	Joel Sherrill <joel.sherrill@OARcorp.com>

	* README.configure: Removed armulator.

2007-05-15	Joel Sherrill <joel.sherrill@OARcorp.com>

	* README.configure, aclocal/check-bsps.m4: Remove references to
	mbx860_1b since it is just an alternate name for the mbx860_001b.

2007-05-11	Joel Sherrill <joel.sherrill@OARcorp.com>

	* README.configure, aclocal/bsp-alias.m4, aclocal/check-bsps.m4:
	Per Jiri Gaisler remove unused erc32nfp and leon1 BSP variants.

2007-05-11	Joel Sherrill <joel.sherrill@oarcorp.com>

	* README.configure: DMV152 obsoleted.

2007-02-21	Joel Sherrill <joel@OARcorp.com>

	* Makefile.maint: Added TOOL_VERSIONS stanza and fixed typo.

2007-02-21	Ralf Corsépius <ralf.corsepius@rtems.org>

	* Makefile.am: Use MKDIR_P instead of mkdir_p.

2007-02-15	Ralf Corsépius <ralf.corsepius@rtems.org>

	* Makefile.maint: Use VERSION as master source for version.m4's.
	* VERSION: Sync with version in aclocal/version.m4.

2007-01-28	Ralf Corsépius <ralf.corsepius@rtems.org>

	* Makefile.maint: Sync nomenclature with that being used in
	  cpukit/score/include/rtems/system.h (major->minor,
	  minor->revision).

2007-01-27	Ralf Corsépius <ralf.corsepius@rtems.org>

	* Makefile.maint: Remove references to
	  cpukit/score/include/rtems/system.h.
	* Makefile.maint: Add CVS_RUN.

2007-01-26	Ralf Corsépius <ralf.corsepius@rtems.org>

	* Makefile.maint: New.

2007-01-08	Ralf Corsépius <ralf.corsepius@rtems.org>

	* acinclude.m4: AC_PREREQ(2.60).

2007-01-08	Ralf Corsépius <ralf.corsepius@rtems.org>

	* ampolish3: Use MKDIR_P instead of mkdir_p.

2007-01-08	Ralf Corsépius <ralf.corsepius@rtems.org>

	* Makefile.am: Remove scripts/.

2006-12-02	Ralf Corsépius <ralf.corsepius@rtems.org>

	* configure.ac: New BUG-REPORT address.

2006-11-20	Ralf Corsépius <ralf.corsepius@rtems.org>

	* Makefile.am: Add ampolish3.

2006-11-18	Ralf Corsépius <ralf.corsepius@rtems.org>

	* bootstrap: Add -r (autoreconf).

2006-11-18	Ralf Corsépius <ralf.corsepius@rtems.org>

	* bootstrap: Add -p (regenerate preinstall.ams).

2006-11-15	Ralf Corsépius <ralf.corsepius@rtems.org>

	* ampolish3: New.

2006-10-19	Joel Sherrill <joel@OARcorp.com>

	* configure.ac: Remove all macro implementations and use only the
	static inline. Static inline functions are now well supported so
	there is no reason for duplicate maintenance.
	* aclocal/enable-inlines.m4: Removed.

2006-10-18	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/rtems-top.m4: Remove RTEMS_API.
	* aclocal/version.m4: Add RTEMS_API. Bump RTEMS_API to 4.8.

2006-10-17	Ralf Corsépius <ralf.corsepius@rtems.org>

	* aclocal/version.m4: Bump version to 4.7.99.0.

2006-10-17	Ralf Corsépius <ralf.corsepius@rtems.org>

	* configure.ac: Require autoconf-2.60. Require automake-1.10.

2006-08-09	Kolja Waschk <waschk@telos.de>

	* config-ml.in: New port to Altera NIOS II.

2006-07-09      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>

	* aclocal/bsp-alias.m4: (PR1117) Add brs5l as alias for gen5200
	* aclocal/check-bsps.m4: (PR1117) Add brs5l as alias for gen5200
	
2006-06-23	Worth Burruss <worth@motioncontrol.org>

	* README.configure: Add mcf5235.

2006-04-18	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-4.6.99.3.

2006-04-18  Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-4.6.99.3.

2006-04-18	Joel Sherrill <joel@OARcorp.com>

	* release_support: Fix typos.

2006-04-18	Joel Sherrill <joel@OARcorp.com>

	* ChangeLog, release_support: Fix typos.

2006-03-09	Ralf Corsepius <ralf.corsepius@rtems.org>

	* acinclude.m4: Requires autoconf-2.59.

2006-03-07	Joel Sherrill <joel@OARcorp.com>

	PR 694/rtems
	* release_support: Do not include .cvsignore files in release tarballs.

2006-02-01	Ralf Corsepius <ralf.corsepius@rtems.org>

	PR 882/make_build
	* bootstrap: Only remove bspopts.h.in instead of bspopts.h*.

2006-01-12	Ralf Corsepius <ralf.corsepius@rtems.org>

	* aclocal/bsp-alias.m4: Revert Joel's 2006-01-10 change.
	Alpha-sort the aliases list.
	* automake/host.am, automake/local.am, automake/subdirs.am:
	Remove depend-am, depend-recursive.

2006-01-10	Joel Sherrill <joel@OARcorp.com>

	* aclocal/bsp-alias.m4: Add sis as alias of erc32.

2006-01-09	Ralf Corsepius <ralf.corsepius@rtems.org>

	* aclocal/bsp-alias.m4: Remove brs5l. Remove leon2.
	Alias leon1 to leon2. Add sis.
	* aclocal/check_bsps.m4: Remove brs5l.
	Remove leon. Add leon2. Add sis to erc32 family.

2005-11-31	Ralf Corsepius <ralf.corsepius@rtems.org>

	PR 851/bsps
	* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Add gen5200 BSP
	family.

2005-11-03	Ralf Corsepius <ralf.corsepius@rtems.org>

	* aclocal/check-bsps.m4: Add the plethora of mbx* BSP.

2005-09-02	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-4.6.99.2.

2005-09-02  Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-4.6.99.2.

2005-07-06      Philippe Simons

	* MAINTAINERS: Added me as arm/gp32 bsp maintainer.

2005-04-28	Joel Sherrill <joel@OARcorp.com>

	* README.configure: Updated to account for removal of dmv177 and
	ppcn_60x as well as other additions and deletions.

2005-02-04	Ralf Corsepius <ralf.corsepius@rtems.org>

	* aclocal/enable-itron.m4: Allow unix.

2005-01-02	Ralf Corsepius <ralf.corsepius@rtems.org>

	* Makefile.am: Remove ACLOCAL_FILES.

2004-11-16	Ralf Corsepius <ralf_corsepius@rtems.org>

	* aclocal/check-bsps.m4: Use ls instead of globs to pickup
	bsp_specs.

2004-11-12	Ralf Corsepius <ralf_corsepius@rtems.org>

	* aclocal/check-bsps.m4: Add MVME2100 BSP as alias of
	motorola_shared.

2004-11-10	Joel Sherrill <joel@oarcorp.com>

	* aclocal/bsp-alias.m4: Add MVME2100 BSP as alias of motorola_shared.

2004-10-22	Ralf Corsepius <ralf_corsepius@rtems.org>

	* alocal/check-custom-bsp.m4: Reflect new location of bspkit*cfg.

2004-10-18	Ralf Corsepius <ralf_corsepius@rtems.org>

	* aclocal/check-bsps.m4: Add bspkit support. Don't check for
	presence of *.cfg.
	* aclocal/check-custom-bsp.m4: Add bspkit support.

2004-10-18	Ralf Corsepius <ralf_corsepius@rtems.org>

	* aclocal/enable-bare.m4: Remove.

2004-09-29	Joel Sherrill <joel@OARcorp.com>

	* MAINTAINERS, README.configure, c/ACKNOWLEDGEMENTS,
	c/TOOL_TARGETS: i960 obsoleted and all references removed.

2004-09-24	Ralf Corsepius <ralf_corsepius@rtems.org>

	* configure.ac: Require automake > 1.9.

2004-09-24	Ralf Corsepius <ralf_corsepius@rtems.org>

	* aclocal/rtems-cpu-subdirs.m4: Remove (unused).

2004-08-18	Ralf Corsepius <ralf_corsepius@rtems.org>

	PR 673/make_build
	* config-ml.in: Quote 'cd "${ml_origdir}"'.
	Quote 'cd "${ML_POPDIR}"'.

2004-08-17	Ralf Corsepius <ralf_corsepius@rtems.org>

	PR 673/make_build
	* acinclude.m4 (_RTEMS_CONFIG_SUBDIR): Quote ac_popdir uses.

2004-07-14      Joel Sherrill <joel@OARcorp.com>

        * MAINTAINERS: Added Jay Monkman as ARM architecture maintainer

2004-03-31	Ralf Corsepius <ralf_corsepius@rtems.org>

	* aclocal/rtems-top.m4: Remove ENDIF. 
	Remove with_target_subdir defaulting to '.'.
	* acinclude.m4: Add --includedir to sub_configure_args.

2004-02-17	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: DIST_SUBDIRS = $(SUBDIRS).
	Rework dist-hook.
	* configure.ac: Reflect changes to RTEMS_ENABLE_RTEMSBSP.
	* aclocal/enable-rtemsbsp.m4: Add support for --disable-rtemsbsp.

2004-02-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: RTEMS_BUILD_CONFIG_SUBDIRS([testsuites/tools]).

2004-02-13	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Remove AUTOMAKE_FILES.
	Cleanup duplicate ACLOCAL_FILES.
	EXTRA_DIST += config-ml.in.
	DIST_SUBDIRS += make.
	Add dist-hook.
	* configure.ac: Add dist-bzip2 no-dist-gzip to AUTOMAKE_OPTIONS.

2004-02-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* bootstrap: RTEMS_CHECK_BSPDIR(RTEMS_BSP_FAMILY).

2004-02-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* VERSION: 4.6.99.0.
	* aclocal/version.m4: 4.6.99.0.

2004-02-06	Joel Sherrill <joel@OARcorp.com>

	* aclocal/bsp-alias.m4: Readd aliases for p4600 and p4650
	which were accidentally removed when purging the mips64orion.

2004-02-03	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/rpm.m4: Make osversions the default.
	* aclocal/rtems-top.m4: Remove check for version.m4 (Breaks make
	distcheck).

2004-02-01	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/rpm.m4: New (extracted from scripts/configure.ac).

2004-01-16	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Require automake >= 1.8.2.
	* aclocal/check-bsps.m4: Also test for make/custom/*.cfg.

2004-01-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Requires automake >= 1.8.1.

2004-01-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* .cvsignore: Remove mkinstalldirs.
	* bootstrap: Remove compile during "clean".

2004-01-08	Joel Sherrill <joel@OARcorp.com>

	* .cvsignore: Add compile.

2004-01-07	Joel Sherrill <joel@OARcorp.com>

	* README.configure: Remove efi68k and efi332 references as they are no
	longer in the tree.

2004-01-07	Joel Sherrill <joel@OARcorp.com>

	* aclocal/bsp-alias.m4, aclocal/rtems-cpu-subdirs.m4: mips64orion port
	removed as mips port more completely covers the MIPS family.

2003-12-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* README.configure: Reflect requireing autoconf-2.59 and
	automake-1.8.

2003-12-17	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-20031217-test.

2003-12-17  Joel Sherrill <joel@OARcorp.com>

    * aclocal/version.m4: Updated to rtems-20031217-test.

2003-12-17	Joel Sherrill <joel@OARcorp.com>

	* release_support: Correct method used to find ChangeLog associated 
        with the version.m4 files.  Keep going until I can get a tarball cut.

2003-12-17	Joel Sherrill <joel@OARcorp.com>

	* release_support: Use dirname not basedir.  Keep going until I
	can get a tarball cut.

2003-12-17	Joel Sherrill <joel@OARcorp.com>

	* release_support: New file -- assistant to new cut_release script.

2003-12-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Remove automake/compile.am

2003-12-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Remove (Unused).

2003-12-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/lib.am: Remove (Unused).

2003-12-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Require automake >= 1.8, autoconf >= 2.59.

2003-12-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove make/custom/Makefile.
	* Makefile.am: Cosmetics.
	* automake/compile.am: Remove compilation rules.
	Remove $(ARCH) directory generation.

2003-11-26	Joel Sherrill <joel@OARcorp.com>

	* MAINTAINERS: New file.

2003-11-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/bsp-alias.m4, aclocal/canonical-target-name.m4,
	aclocal/check-bsps.m4, aclocal/check-custom-bsp.m4,
	aclocal/enable-bare.m4, aclocal/enable-cxx.m4,
	aclocal/enable-inlines.m4, aclocal/enable-itron.m4,
	aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4,
	aclocal/enable-posix.m4, aclocal/enable-rdbg.m4,
	aclocal/enable-rtems-debug.m4, aclocal/enable-rtemsbsp.m4,
	aclocal/enable-tests.m4, aclocal/multilib.m4,
	aclocal/path-ksh.m4, aclocal/project-root.m4,
	aclocal/rtems-top.m4, aclocal/tool-paths.m4,
	acinclude.m4:
	Fix underquoting to silence automake-1.8.

2003-10-23	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* config-ml.in: Don't built multilib variant normal (-mn) for
	h8300-*-rtems*.

2003-10-23	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/config-subdirs.m4: Remove.
	* Makefile.am: Reflect changes above.

2003-10-23	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/canonical-host.m4: Remove.
	* Makefile.am: Reflect changes above.

2003-10-20	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* bootstrap: Use $RTEMS_BSP_FAMILY instead of RTEMS_BSP_ALIAS in
	c/src/lib/libbsp/*/acinclude.m4.

2003-10-01	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-cpu.m4: Remove.
	* Makefile.am: Remove reference to aclocal/check-cpu.m4.
	* acinclude.m4 (RTEMS_TARGET_CONFIG_SUBDIR): Check for presence of
	$1 in $srcdir before adding dir to SUBDIRS.

2003-09-26  Joel Sherrill <joel@OARcorp.com>

	* README.configure, aclocal/rtems-cpu-subdirs.m4: Removing HPPA port.

2003-08-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/enable-rtems-debug.m4: New (Missed in yesterday's
	patches).
	* aclocal/enable-tests.m4: Change to support
	--enable-tests=no|yes|samples, default is samples.

2003-08-21	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Correct bogus ACLOCAL_FILES.

2003-08-21	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/bsp-arg-enable.m4, aclocal/bsp-configure.m4,
	aclocal/bspopts.m4, aclocal/canonicalize-tools.m4,
	aclocal/check-bsp-cache.m4, aclocal/check-cxx.m4,
	aclocal/check-itron.m4, aclocal/check-multiprocessing.m4,
	aclocal/check-networking.m4, aclocal/check-newlib.m4,
	aclocal/check-posix.m4, aclocal/check-rdbg.m4,
	aclocal/check-tool.m4, aclocal/env-rtemsbsp.m4,
	aclocal/gcc-isystem.m4, aclocal/gcc-pipe.m4,
	aclocal/gcc-specs.m4, aclocal/i386-gas-code16.m4,
	aclocal/path-perl.m4, aclocal/ppc.m4,
	aclocal/prog-cc.m4, aclocal/prog-ccas.m4,
	aclocal/prog-cxx.m4, aclocal/prog-gnat.m4,
	aclocal/rtems-debug.m4, aclocal/rtems-flags.m4,
	aclocal/rtems-test-no-pause.m4, aclocal/target.m4:
	Remove (Unused).
	* automake/leaf.am, automake/force-preinstall.am:
	Remove (Unused).
	* Makefile.am: Reflect changes above.

2003-08-17	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/local.am, automake/host.am: Remove "debug".

2003-08-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Use rtems-bugs@rtems.com as bug report email address.

2003-07-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* config-ml.in: Partial sync with gcc-3.4's config-ml.in.
	Add "autoconf-2.5x unquoting" hack.

2003-07-13	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* config.sub: Remove (Automatically added by automake, again).
	* bootstrap: Reflect change above.
	* configure.ac: Require automake >= 1.7.6.

2003-07-03	Joel Sherrill <joel@OARcorp.com>

	* SUPPORT: Fix Mark Johannes' email address.

2003-07-03	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-ss-20030703.

2003-07-03	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20030703.

2003-06-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* bootstrap: Reflect having added config.sub. 
	* config.sub: New from subversions to accomodate c4x/tic4x.

2003-06-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	PR 412/make_build
	* configure.ac: Remove "BLEEDING EDGE" warning.
	Put docs into RTEMS_BUILD_CONFIG_SUBDIRS.
	* acinclude.m4: Add AC_PREREQ(2.57).  Major overhaul.
	* aclocal/prog-cc.m4: Add RTEMS_GCC_ISYSTEM.
	* aclocal/gcc-isystem.m4: New.
	* Makefile.am: Add aclocal/gcc-isystem.m4.

2003-06-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/local.am: Remove $(ARCH), clean-local.

2003-05-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	PR 321:
	* aclocal/check-bsp-cache.m4: Remove support for profile-variant.
	* aclocal/env-rtemsbsp.m4
	* automake/compile.am
	* automake/host.am
	* automake/local.am

2003-05-16	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-cxx.m4: Remove LIBSUFFIX_VA.
	* automake/compile.am: Remove LIBSUFFIX_VA.
	Merger from rtems-4-6-branch.

2003-04-17	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-ss-20030417.

2003-04-17	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20030417.

2003-04-11	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-ss-20030411.

2003-04-11	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20030411.

2003-04-11	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-ss-20020411.

2003-04-11	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20020411.

2003-03-13	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* acinclude.m4: Reformat build_* handling.
	Preset *_alias if empty.
	* configure.ac: Change tools/build to build-config dirs.
	Conditionally build tools/build as host-config dirs.

2003-03-13	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* acinclude.m4: Fix broken comments.
	Add hidden option --enable-experimental.
	* README.cdn-X: Update.
	* configure.ac:	Build tools/build as host and build-host tools to
	accomodate those BSPs applying packhex in <BSP>.cfg.
	Build tools/cpu as build-host tools.

2003-03-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* tools/Makefile.am: Remove.
	* configure.ac: Remove tools.
	* acinclude.m4: Fix build_subdir handling.
	* Makefile.am: Remove tools from SUBDIRS.
	Rename HOST|BUILD|TARGET_SUBDIRS into host|build|target_SUBDIRS.

2003-03-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove AC_CONFIG_AUX_DIR.
	* alocal/rtems-top.a4: Add AC_CONFIG_AUX_DIR.

2003-02-28	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* bootstrap: Add ACLOCAL, AUTOHEADER.
	Don't check for auto*tool-versions.

2003-02-28	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* config-ml.in: Don't build sh-rtems ml and ml/m2 multilib variants.

2003-02-28	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Introduce depend-gcc.
	* automake/lib.am: Remove stray comment.
	* automake/local.am: Introduce depend-gcc.

2003-02-28	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* config-ml.in: Don't build arm-rtems/*fpu* multilib variants.

2003-02-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/rtems-top.m4: Set PROJECT_ROOT unconditionally.
	* automake/local.am: Remove $(ARCH), clean-local.
	* automake/compile.am: Add $(ARCH), clean-local.
	Set CXXFLAGS = @RTEMS_CFLAGS@ $(XCXXFLAGS).

2003-02-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Remove references to obsoleted files
	aclocal/enable-gcc28.m4, aclocal/enable-libcdir.m4.

2003-02-14	Joel Sherrill <joel@OARcorp.com>

	* README.configure, aclocal/rtems-cpu-subdirs.m4: Remove a29k
	references.

2003-02-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/canonical-target-name.m4: Transform tic4x -> RTEMS_CPU=c4x.

2003-02-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* bootstrap: Remove attempts to detect autoconf and automake using
	"which" (PR 325).

2003-02-06	Joel Sherrill <joel@OARcorp.com>

	* README.configure: Updated to reflect new BSPs and deprecated
	targets.

2003-01-28	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-ss-20030128.

2003-01-28	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20030128.

2003-01-21	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Remove CLEAN_DEPEND (Unused). 
	Remove CLOBBER_DEPEND (Unused).

2003-01-20	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/local.am: Remove distclean-local.

2001-01-16	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/rtems-cpu-subdirs.m4: Print out RTEMS_CPU in error message.
	* aclocal/enable-cxx.m4: Use $enable_cxx instead of $enableval.

2002-12-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/prog-cxx.m4: Remove RTEMS_PROG_CXX.
	Rework RTEMS_PROG_CXX_FOR_TARGET.

2002-12-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Remove creating $(ARCH) in compilation rules.

2002-12-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Require autoconf >= 2.57 and automake-1.7.2.

2002-12-10	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/prog-cxx.m4: Swap RTEMS_CHECK_TOOL/AC_PROG_CXX.

2002-12-07	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* bootstrap: Require autoconf 2.54 or 2.57.
	Require automake-1.7.2.

2002-12-07	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/bsp-configure.m4: Remove RTEMS_CHECK_BSP_CACHE.
	* aclocal/env-rtemsbsp.m4: Add comments to AC_ARG_VARs.
	Add AC_ARG_VAR(RTEMS_CPU_MODEL).

2002-12-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Rework *FLAGS, AM_*FLAGS handling.

2002-12-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Remove hard-coded *_PROFILE_V.
	Add autoconf-supplied CPU_CFLAGS, CFLAGS_OPTIMIZE_V, CFLAGS_DEBUG_V, 
	CFLAGS_PROFILE_V.
	Remove CPPFLAGS_GCC.

2002-12-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/env-rtemsbsp.m4: Add AC_ARG_VAR for CPU_CFLAGS,
	CFLAGS_OPTIMIZE_V, CFLAGS_DEBUG_V, CFLAGS_PROFILE_V, RTEMS_BSP_FAMILY.
	* aclocal/prog-cc.m4: Reworked CFLAGS handling.
	* aclocal/prog-cxx.m4: Reworked CXXFLAGS handling.

2002-12-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/rtems-flags.m4: New.

2002-12-04	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* bootstrap: Allow autoconf-2.57.

2002-12-01	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/prog-cc.m4: Remove GCCSED.

2002-12-01	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Remove LDFLAGS_INCOMPLETE.
	Remove LDFLAGS.
	Add CCAS, CCASCOMPILE.
	Remove compilation rules for *.cpp, *.cxx, *.C.
	Use CCASCOMPILE to compile *.S.
	Add -pg to RTEMS_CFLAGS_PROFILE_V.

2002-11-29	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove c/make.

2002-11-29	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/prog-ccas.m4: New.
	* aclocal/check-custom-bsp.m4: New, split out from check-bsps.m4.
	* aclocal/check-bsps.m4: Split out RTEMS_CHECK_CUSTOM_BSP.
	* aclocal/canonicalize-tools.m4: Remove RTEMS_GCC_PRINT.

2002-11-20	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* acinclude.m4: Conditionally append --target=.

2002-11-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/quoting.m4: Reworked (Part of fix to PR 312).

2002-11-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Remove LD_PATHS (Unused).
	* aclocal/check-newlib.m4: Adaptation to autoconf-2.5x (AC_TRY_LINK
	is announced obsolete).

2002-11-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Reflect having removed aclocal/sysv-ipc.m4.

2002-11-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/sysv-ipc.m4: Remove (Unused).
	* aclocal/target.m4: Sync with acinclude.m4 (Part of fix to PR 312).

2002-11-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* acinclude.m4: Lots of changes addressing PR 312.

2002-11-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/target.m4: Apply RTEMS_CONFIGURE_ARGS_QUOTE (Part of fix
	to PR 312).

2002-11-18	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-ss-20021118.

2002-11-18	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20021118.

2002-11-17	Joel Sherrill <joel@OARcorp.com>

	* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Added support for
	Motorola MTX603e.

2002-11-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/target.m4: Use RTEMS_CONFIGURE_ARGS_QUOTE.

2002-11-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* acinclude.m4: Use AS_IF instead of if/then/else/endif.
	* configure.ac: Ditto.

2002-11-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Remove CFLAGS_DEBUG_OPTIMIZE_V,
	CXXFLAGS_DEBUG_OPTIMIZE_V, LDFLAGS_DEBUG_V, CFLAGS_DEFAULT.
	Support @CFLAGS@, @CXXFLAGS@.

2002-11-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* bootstrap: Allow autoconf-2.56.

2002-11-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* acinclude.m4: Add CXX_FOR_*, CXXFLAGS_FOR_*.
	Fix stupid typo (continue/configure).
	* aclocal/prog-cc.m4: Remove obsolete comments.
	Acknowledge CFLAGS.

2002-11-13	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* acinclude.m4: _RTEMS_OUTPUT_SUBDIRS: Move ac_subconfigure_vars to the
	end of the args passed to sub-configure-scripts. (Reported by
	Wulf Hofbauer <wh73@cornell.edu>)

2002-11-12	Joel Sherrill <joel@OARcorp.com>

	* configure.ac: Remove make/compilers/Makefile.

2002-11-11	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-ss-20021111.

2002-11-11	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20021111.

2002-11-11	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-ss-20021111.

2002-11-11	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20021111.

2002-11-08	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Remove rel rule.

2002-11-07	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* bootstrap: Allow autoconf > 2.52, automake > 1.6.

2002-11-07	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Remove make/Templates/Makefile.
	* README.configure: Minor massaging.

2002-11-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	Further preparations for autoconf > 2.52:
	* aclocal/enable-inlines.m4: Use AS_IF instead of if/then/else.
	* aclocal/quoting.m4: Use `eval echo $ac_args` to unquote $ac_arg.
	* aclocal/target.m4: Use `eval echo $rtems_args` to unquote $ac_arg.

2002-11-05	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* acinclude.m4: Adapations to autoconf > 2.52.

2002-11-01	Joel Sherrill <joel@OARcorp.com>

	* ChangeLog: Corrected.

2002-10-30	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* bootstrap: Add generate_bspdir_acinclude to automatically update
	c/src/lib/libbsp/<cpu>/acinclude.m4.
	Use #! /bin/sh instead of #!/bin/sh.
	Remove autom4te*.cache during ./bootstrap --clean.

2002-10-29	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/enable-bare.m4: Improve quoting of AC_HELP_STRING.
	* aclocal/enable-cxx.m4: Improve quoting of AC_HELP_STRING.
	* aclocal/enable-inlines.m4: Improve quoting of AC_HELP_STRING.
	* aclocal/enable-itron.m4: Improve quoting of AC_HELP_STRING.
	* aclocal/enable-multiprocessing.m4: Improve quoting of AC_HELP_STRING.
	* aclocal/enable-networking.m4: Improve quoting of AC_HELP_STRING.
	* aclocal/enable-posix.m4: Improve quoting of AC_HELP_STRING.
	* aclocal/enable-rdbg.m4: Improve quoting of AC_HELP_STRING.
	* aclocal/enable-rtemsbsp.m4: Improve quoting of AC_HELP_STRING.
	* aclocal/enable-tests.m4: Improve quoting of AC_HELP_STRING.
	(autoconf > 2.54 seems to have problems with the old form of
	quoting).

2002-10-28	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/enable-rtemsbsp.m4: Remove '\' in AC_MSG_ERROR 
	(autoconf > 2.54 complains about).

2002-10-21	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-20021021-test.

2002-10-21	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-20021021-test.

2002-10-21	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* .cvsignore: Reformat.
	Add autom4te*cache.
	Remove autom4te.cache.

2002-10-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/ppc.m4: Apply RTEMS_CONFIGURE_ARGS_QUOTE.

2002-10-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/quoting.m4: New (Implements RTEMS_CONFIGURE_ARGS_QUOTE).
	* acinclude.m4: Apply RTEMS_CONFIGURE_ARGS_QUOTE.

2002-10-08	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* bootstrap: Add autoconf/automake version checks by popular demand.
	[FWIW: I dislike this.]

2002-10-07	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-ss-20021007.

2002-10-07	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20021007.

2002-10-04	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-JUNK.

2002-10-04	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-JUNK.

2002-10-04	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-ss-20021004.

2002-10-04	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20021004.

2002-08-29	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/bsp-configure.m4: Create bspopts.h on the fly, filter out
	autoconf-2.53 PACKAGE crap.

2002-08-28	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/prog-gnat.m4: New.

2002-08-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/bsp-configure.m4: Fix small typo in comment.

2002-08-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/env-rtemsbsp.m4: RTEMS_ROOT="\$(PROJECT_ROOT)/c/$RTEMS_BSP".

2002-08-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-bsp-cache.m4: Convert to autoconf-2.5x quoting
	rules. Add RTEMS_BSP_CFLAGS, RTEMS_BSP_CFLAGS_OPTIMIZE_V,
	RTEMS_BSP_CFLAGS_DEBUG_V, RTEMS_BSP_CFLAGS_PROFILE_V.

2002-08-07	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20020807.

2002-08-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/env-rtemsbsp.m4: Remove RTEMS_CONFIG_PER_BSP.

2002-07-31	Joel Sherrill <joel@OARcorp.com>

	* aclocal/rtems-cpu-subdirs.m4:  Removed the or16 port
	was just a stub and only the OR32 port is getting worked on.

2002-07-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/subdirs.m4: Remove.
	* acinclude.m4: New (Replaces aclocal/subdirs.m4).

2002-07-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-cpu.m4: Peek into cpukit/score/cpu instead of
	exec/score/cpu.

2002-07-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/bsp-configure.m4: Add RTEMS_CHECK_MULTIPROCESSING.
	* automake/compile.am: Add test -d $(ARCH) || mkdir $(ARCH) to all
	compilation rules (Work-around to an automake bug).
	* automake/lib.am: Add test -d $(ARCH) || mkdir $(ARCH) to
	make-library.

2002-07-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Activate cpukit. Remove references to c/src/exec.

2002-07-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/env-rtemsbsp.m4: Add libdir, bsplibdir.

2002-07-17	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20020717.

2002-07-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* config-ml.in: Imported from gcc-3.1. 
	Change to match c/src/config-ml.in.

2002-06-30	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-multiprocessing.m4: Reworked.
	* aclocal/enable-multiprocessing.m4: Remove RTEMS_HAS_MULTIPROCESSING.

2002-06-30	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/multilib.am: Remove.
	* Makefile.am: Reflect change above.

2002-06-28	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20020628.

2002-06-27	Joel Sherrill <joel@OARcorp.com>

	* tools/Makefile.am: Build the cpu dependent tools as well.

2002-06-17	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/env-rtemscpu.m4: Remove.
	* aclocal/multi.m4: Remove.
	* aclocal/multilib: Remove RTEMS_ENABLE_MULTILIB_MASTER.

2002-05-28	Joel Sherrill <joel@OARcorp.com>

	* aclocal/version.m4: Updated to rtems-ss-20020528.

2002-04-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/prog-cc.m4: Remove GCC272 support. 
	Remove ENABLE_LIBCDIR.
	* aclocal/prog-cxx.m4: Ditto.
	* aclocal/enable-gcc28.m4: Remove.
	* aclocal/enable-libcdir.m4: Ditto.

2002-04-16	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/enable-libcdir.m4, aclocal/enable-gcc28.m4: Remove
	ENABLE_GCC28.

2002-04-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Remove GCC272 support. 
	Remove *.sh rule (unused).
	* configure.ac: Remove ENABLE_GCC28.
	Remove ENABLE_LIBCDIR.

2002-04-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* .cvsignore: Added mdate-sh and texinfo.tex.

2002-03-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/version.m4: New file.
	* aclocal/rtems-top.m4: Add RTEMS_VERSIONING, replace VERSION w/
	aclocal/version.m4.
	* bootstrap: Use aclocal/version.m4 instead of VERSION.
	* configure.ac: Use aclocal/version.m4 instead of VERSION.

2002-03-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac:
	AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
	AM_INIT_AUTOMAKE([no-define foreign 1.6]).
	* Makefile.am: Remove AUTOMAKE_OPTIONS.
	* tools/Makefile.am: Remove AUTOMAKE_OPTIONS.

2002-03-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/env-rtemscpu.m4: automake-1.6 preparations:
	Add AM_CONDITIONAL([RTEMS_CONFIG_PER_BSP],[false]).

2002-03-08	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-mg5-20020808.

2002-03-01	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-ss-20020301.

2002-02-15	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-ss-20020215.

2002-02-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/subdirs.m4: Propagate the current $prefix to the
	sub-configures.

2002-02-05	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-ss-20020205.

2002-01-23	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/sysv-ipc.m4: Use 3-args AC_DEFINE for autoconf-2.5x
	compatibility.
	* bootstrap: Let --clean remove texinfo.tex.

2002-01-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/env-rtemsbsp.m4: Use ${RTEMS_BSP} to setup includedir.

2002-01-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Add --enable-docs support. Add
	RTEMS_HOST_CONFIG_SUBDIRS(doc). Remove doc/Makefile.
	* Makefile.am: Add HOST_SUBDIRS to SUBDIRS. Remove doc from
	hard-coded SUBDIRS.
	* README.configure: Added a bit of information on this new option.

2002-01-18	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-ss-20020118.

2002-01-18	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-20020118.

2002-01-17	Joel Sherrill <joel@OARcorp.com>

	* VERSION: Updated to rtems-ss-20020717.

2002-02-07	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-tool.m4: Remove AC_CHECK_TOOL_PREFIX, conditionalize
	check upon host_alias != build_alias.

2002-01-07	Joel Sherrill <joel@OARcorp.com>

	* automake/compile.am (LINK_LIB_RTEMS): Removed line continuation for
	last line to eliminate 100's of warnings.

2002-02-05	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-newlib.m4: Apply AS_IF.
	* aclocal/config-subdirs.m4: Remove _RTEMS_PUSH_BUILDDIR,
	_RTEMS_POP_BUILDDIR, _RTEMS_GIVEN_INSTALL, _RTEMS_SUB_SRCDIR.
	* aclocal/subdirs.m4: Fix comments, apply AS_IF.
	* aclocal/sysv-ipc.m4: Reflect autoconf-2.5x canonicalization
	changes.
	* aclocal/target.m4: Add _RTEMS_PUSH_BUILDDIR, _RTEMS_POP_BUILDDIR,
	_RTEMS_GIVEN_INSTALL, _RTEMS_SUB_SRCDIR.
	* automake/compile.am: Remove librtemsall from LINK_FILES.

2001-12-20	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.ac: Reworked for multilibs, reflect changes to aclocal/*.m4.
	* aclocal/subdirs.m4: New file.
	* aclocal/multi.m4: New file, adopted from autoconf-2.52 w/
	modifications.
	* aclocal/check-posix.m4: Apply AS_IF.
	* aclocal/config-subdirs.m4: Reflect changes to other m4-macros.
	* aclocal/env-rtemsbsp.m4: Add PROJECT_INCLUDE, PROJECT_RELEASE.
	Add AM_CONDITIONAL(MULTILIB). Adapt GCC_SPECS to multilibs.
	* aclocal/env-rtemscpu.m4: Remove RTEMS_BSP. Add support for
	MULTIBUILDTOP, MULTISUBDIR. Adapt GCC_SPECS to multilibs.
	Add PROJECT_INCLUDE, PROJECT_RELEASE, includedir, libdir.
	* aclocal/multilib.m4: Fix m4-quoting, adopt automake-1.5's
	OUTPUT_COMMANDS.
	* aclocal/project-root.m4: Remove PROJECT_INCLUDE, PROJECT_RELEASE.
	* aclocal/rtems-debug.m4: Minor cleanups.
	* aclocal/rtems-top.m4: Minor cleanups.
	* automake/compile.am: Further steps towards automake's rules.

2001-12-18	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/multilib.am: include @RTEMS_BSP@.cfg, cleanup.
	* automake/lib.am: Add MULTISUBDIR.

2001-12-04	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* bootstrap: Run autoheader when configure.ac contains
	RTEMS_BSP_CONFIGURE. Remove bspopts.h* files.

2001-11-30	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/bsp-configure.m4: New file.
	* Makefile.am: Add aclocal/bsp-configure.m4.

2001-11-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Add automake/force-preinstall.am,
	aclocal/ppc.am, remove ACLOCAL_M4.

2001-11-21	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/bsp-alias.m4: Remove score603e_g1.
	* aclocal/check-bsps.m4: Remove score603e_g1.
	* aclocal/prog-cc.m4: Apply m4_if.


2001-11-15	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/force-preinstall.am: New file.
	* aclocal/ppc.m4: New file.

2001-11-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-bsps.m4: Reworked.
	* aclocal/bsp-alias.m4: Add score603e_g1, apply m4sugar.

2001-11-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/bspopts.m4: New file.

2001-11-13	Joel Sherrill <joel@OARcorp.com>

	* COPYING: Test of $Id$ -> $RTEMS$.

2001-11-08	Dennis Ehlin (ECS) <Dennis.Ehlin@ecs.ericsson.se>

	This modification is part of the submitted modifications necessary to
	support the IBM PPC405 family.  This submission was reviewed by
	Thomas Doerfler <Thomas.Doerfler@imd-systems.de> who ensured it did
	not negatively impact the ppc403 BSPs.  The submission and tracking
	process was captured as PR50.
	* README.configure: Added gen405 BSP.

2001-10-29	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Adopt more automake rules:
	* automake/compile.am: Add LINK, CXXLINK, AS, ASCOMPILE; 
	Remove ARFLAGS, LINK.c, COMPILE.S, LINK.cc; 
	Add CPU_CFLAGS to CXXFLAGS, CFLAGS, ASFLAGS;
	* automake/leaf.am: Add CXXLINK_APP, LINK_APP, make-exe, apply
	CXXLINK_APP in make-cxx-exe.
	* automake/lib.am: Add ARFLAGS.

2001-10-17	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-rdbg.m4: Fix latent bug exposed by removal of
	config.cache's which prevented powerpc targets librdbg from building. 

2001-10-16	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/rtems-cpu-subdirs.m4: Add PREFIX arg to RTEMS_CPU_SUBDIRS,
	add 2nd arg to _RTEMS_CPU_SUBDIR.
	* aclocal/target.m4: Replace ac_configure_args with
	rtems_configure_args, add rtems_configure_args to INIT-CMDS.
	* Makefile.am: Require automake-1.5.

2001-10-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* .cvsignore: Add autom4te.cache for autoconf > 2.52.
	* configure.in: Remove.
	* configure.ac: New file, generated from configure.in by autoupdate.

2001-10-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/rtems-cpu-subdirs.m4: New file.

2001-10-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: Fundamentally reworked compilation rules for 
	closer adaptation to automake's behavior.

2001-09-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/lib.am: Comment out LD.
	* Makefile.am: Use ACLOCAL_FILES = to make automake-1.5 happy; Add
	automake/leaf.am to AUTOMAKE_FILES.

2001-09-27	Joel Sherrill <joel@OARcorp.com>

	* config.guess: No longer in CVS since installed by bootstrap.

2001-09-21	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* bootstrap: remove/add automake added files.
	* .cvsignore: reflect changes to bootstrap.

2001-09-19	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/leaf.am: New file.

2001-09-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/canonical-target-name.m4: Use AC_CANONICAL_TARGET instead
	of AC_CANONICAL_SYSTEM.
	* aclocal/config-subdirs.m4: Use AS_MKDIR_P instead of
	mkinstalldirs and mkdir.
	* aclocal/target.m4: Obsolete RTEMS_OUTPUT_BUILD_SUBDIRS,
	hack RTEMS_CONFIG_BUILD_SUBDIRS, introduce
	_RTEMS_OUTPUT_BUILD_SUBDIRS.
	
2001-09-13	Joel Sherrill <joel@OARcorp.com>

	* missing: Updated to latest version.

2001-09-13	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.in: autoupdate to autoconf-2.52.
	* bootstrap: Add handling for configure.ac, make autoheader verbose,
	fix auto*tool invocation order.
	* aclocal/rtems-test-no-pause.m4: Introduce AC_HELP_STRING.
	* aclocal/enable-bare.m4: Introduce AC_HELP_STRING.
	* aclocal/enable-cxx.m4: Introduce AC_HELP_STRING.
	* aclocal/enable-gcc28: Introduce AC_HELP_STRING.
	* aclocal/enable-inlines.m4: Introduce AC_HELP_STRING.
	* aclocal/enable-itron.m4: Introduce AC_HELP_STRING.
	* aclocal/enable-libcdir.m4: Introduce AC_HELP_STRING.
	* aclocal/enable-multiprocessing.m4: Introduce AC_HELP_STRING.
	* aclocal/enable-networking.m4: Introduce AC_HELP_STRING.
	* aclocal/enable-posix.m4: Introduce AC_HELP_STRING.
	* aclocal/enable-rdbg.m4: Introduce AC_HELP_STRING.
	* aclocal/enable-rtemsbsp.m4: Introduce AC_HELP_STRING.
	* aclocal/enable-tests.m4: Introduce AC_HELP_STRING.
	* aclocal/env-rtemsbsp.m4: Add AC_ARC_VAR(RTEMS_BSP), apply true in
	RTEMS_CONFIG_PER_BSP conditional.
	* aclocal/multilib.m4: Introduce AC_HELP_STRING.
	* aclocal/rtems-debug.m4: Introduce AC_HELP_STRING.
	* aclocal/rtems-top.m4: Add AC_PREFIX_DEFAULT(/opt/rtems).

2001-05-25	Joel Sherrill <joel@OARcorp.com>

 	* README.configure: Corrected the name of the MRM332 BSP.
	Strengthened the distinction between what the target 
	and the BSP each select.  Added more targets to list.

2001-05-25	Joel Sherrill <joel@OARcorp.com>

 	* README.configure: Updated the list of BSPs.

2001-05-16	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* canonical-target-name.m4: Fix m4-quoting for autoconf-2.49f.
	* aclocal/config-subdirs.m: Fix m4-quoting for autoconf-2.49f,
	Add support for DOS-drive-letters.

2001-04-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/prog-cc.m4: Add CPPFLAGS and CFLAGS handling to
	RTEMS_PROG_CC_FOR_TARGET.

2001-04-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* README.cdn-X: Update.
	* automake/compile.am: Remove -ansi -fasm from CFLAGS_DEFAULT, add
	@CPPFLAGS@ to CPPFLAGS.

2001-04-20	Eric Valette <valette@crf.canon.fr>

 	* aclocal/check-rdbg.m4: Added check to determine which PowerPC
	BSPs support the new exception processing model and 
	consequently, librdbg.

2001-02-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.in: Reworked for Canadian Cross support.
	* Makefile.am: Reflect changes to configure.in.
	* config.guess, config.sub: Update from subversions.gnu.org.
	* README.cdn-X: New file.
	* tools/Makefile.am: Remove build, tools from SUBDIRS.

2001-02-20	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/config-subdirs.m4: Let CC default to $host_alias-gcc in
	TARGET_CONFIG_SUBDIRS.
	* aclocal/enable-bsp.m4: fix quoting.
	* aclocal/check-bsps.m4, aclocal/bsp-alias.m4: Add pc386dx.

2001-02-03	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/config-subdirs.m4: New file.
	* aclocal/target.m4: Use macros from config-subdirs.m4.

2001-02-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/env-rtemsbsp.m4, aclocal/env-rtemscpu.m4:
	Add -B$(PROJECT_ROOT)/ to GCC_SPECS.

2001-02-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.in: Fix AM_INIT_AUTOMAKE.
	* aclocal/bsp-arg-enable.m4: Extend comments.
	* aclocal/check-bsps.m4: Remove extraneous comments, add test -d in
	the default clause.

2001-01-26	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/enable-rtemsbsp.m4: Split out RTEMS_ENV_RTEMSBSP,
	RTEMS_ENV_RTEMSCPU.
	* aclocal/env-rtemsbsp.m4: New file for RTEMS_ENV_RTEMSBSP, add
	special treatment for GCC_SPECS.
	* aclocal/env-rtemscpu.m4: New file for RTEMS_ENV_RTEMSCPU, add
	special treatment for GCC_SPECS.
	* aclocal/bsp-enable-arg.m4: New file, introduce RTEMS_BSP_ARG_ENABLE.
	* aclocal/prog-cc.m4: Add AC_PROG_CPP, use build_os in GCCSED hack.
	* automake/compile.am: New treatment of CPP, GCCSPECS, use `..` 
	instead of $(shell ..) for LIBC_LIB*.

2001-01-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Add simsh7032 and
	simsh7045.

2001-01-03	Emmanuel Raguet <raguet@crf.canon.fr>

	* automake/compile.am: Add LD.

2000-11-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* config.guess, config.sub: Update from CVS-autoconf to pick
	up new features (e.g. CC_FOR_BUILD in config.guess) but is
	necessary anyway to use autoconf-versions > 2.13.

2000-11-13	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/canonical-host.m4: Abandon changequotes (autoconf-2.49b).
	* aclocal/check-newlib.m4: Let check message refer to RTEMS newlib.
	* aclocal/rtems-debug.m4: Fix formating and contents of the check's
	help string.
	* aclocal/rtems-top.m4: Remove AC_ARG_WITH(target-subdir).

2000-11-13	Jiri Gaisler <jgais@ws.estec.esa.nl>

	* README.configure, aclocal/bsp-alias.m4, aclocal/check-bsps.m4:
	Modified to reflect addition of LEON BSPs as well as the 
	no-FP ERC32 variant.

2000-11-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/gcc-pipe.m4: Use $GCC instead of ac_cv_prog_gcc (autoconf
	standard).
	* aclocal/gcc-specs.m4: Use $GCC instead of ac_cv_prog_gcc (autoconf
	standard).
	* aclocal/multilib.m4: Fix m4-quoting (BUG-FIX).
	* aclocal/check-bsp-cache.m4: Fix m4-quoting (autoconf-2.49b).
	* aclocal/prog-cc.m4: Use $GCC instead of ac_cv_prog_gcc (autoconf
	standard), replace CC_FOR_TARGET with CC (BUG-FIX).

2000-11-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/enable-itron.m4: Remove changequotes (autoconf-2.49b).
	* aclocal/enable-posix.m4: Remove changequotes (autoconf-2.49b), use
	$host instead of $target (BUG-FIX).
	* configure.in: Use $target and $host instead of $target_alias and
	$host_alias (autoconf-2.49b).
	* aclocal/check-newlib.m4: Remove CC_FOR_TARGET (BUG-FIX)
	* aclocal/sysv-ipc.m4: Move AC_DEFINE outside of AC_CACHE (BUG-FIX)

	NOTES:
	* autoconf-2.49b depredicates using changequotes.
	* The changes to configure.in are due to cleanups in
	autoconf-2.49b's implemention of canonicalization. With
	autoconf-2.1x it wasn't always clear, when to use $xxx or
	$xxx_alias. Now this is clear.

2000-11-09	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.

2000-11-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/canonicalize-tools.m4, aclocal/check-tool.m4,
	aclocal/prog-cc.m4, aclocal/prog-cxx.m4:  Replace AC_CHECK_TOOL
	with an RTEMS specific but more restrictive autoconf macro.

2000-11-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/lib.am: Add LD.

2000-11-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/canonicalize-tools.m4: Remove RTEMS_PATH_TOOL, use
	AC_CHECK_TOOL instead of RTEMS_PATH_TOOL in RTEMS_CANONICALIZE_TOOLS.

2000-11-02	Ralf Corsepius <corsepiu@faw.uni-ulm.de>
  
	* aclocal/*: Replace with contents of macros/*.m4
	* macros/: Remove.
	* aclocal/ar-s.m4 aclocal/tool-prefix.m4: Remove.
	* Makefile.am: Reflect changes to aclocal/ and macros/.

2000-10-30	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* configure.in: New, Cygnus/GNU style configuration.
	* Makefile.am: Add macros/, reflect new configure.in,
	ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/macros
	* automake/compile.am: BSP_SPECS, remove RTEMS_CANONICALIZATION.
	* automake/lib.am: Remove RTEMS_CANONICALIZATION.
	* macros/tool-prefix.m4: Remove.
	* macros/target.m4: Remove RTEMS_CONFIG_SUBDIRS, RTEMS_OUTPUT_SUBDIRS.
	* macros/enable-rtemsbsp.m4: Add RTEMS_CONFIG_PER_BSP, add setting 
	RTEMS_ROOT.
	* macros/i386-gas-code16.m4: Define NEW_GAS only for 16bit mode-
	* macros/multilib.m4: Various minor fixes.
	* macros/project-root.m4: Remove setting PROJECT_TOPdir,
	PROJECT_ROOT, RTEMS_ROOT.
	* macros/rtems-top.m4: Remove RTEMS_CANONICALIZATION, TARGET_SUBDIRS;
	Add with_target_subdirs, PROJECT_TOPdir, PROJECT_ROOT.

2000-10-27	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

 	* automake/multilib.am: New file.
 	* Makefile.am: Update AUTOMAKE_FILES to reflect the contents of
 	the automake/ directory.

2000-10-24	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* macros/enable-hwapi.m4: Removed.
	* aclocal/rtems-top.m4, automake/compile.am, automake/lib.am:
	A small cleanup step towards gnu-canonicalization.

2000-09-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* macros: New directory.
	* macros/bsp-alias.m4: new file.
	* macros/canonical-host.m4: new file.
	* macros/canonical-target-name.m4: new file.
	* macros/canonicalize-tools.m4: new file.
	* macros/check-bsp-cache.m4: new file.
	* macros/check-bsps.m4: new file.
	* macros/check-cpu.m4: new file.
	* macros/rtems-debug.m4: new file.
	* macros/check-cxx.m4: new file.
	* macros/check-itron.m4: new file.
	* macros/check-multiprocessing.m4: new file.
	* macros/check-networking.m4: new file.
	* macros/check-newlib.m4: new file.
	* macros/check-posix.m4: new file.
	* macros/check-rdbg.m4: new file.
	* macros/enable-bare.m4: new file.
	* macros/enable-cxx.m4: new file.
	* macros/enable-gcc28.m4: new file.
	* macros/enable-inlines.m4: new file.
	* macros/enable-itron.m4: new file.
	* macros/enable-libcdir.m4: new file.
	* macros/enable-multiprocessing.m4: new file.
	* macros/enable-networking.m4: new file.
	* macros/enable-posix.m4: new file.
	* macros/enable-rdbg.m4: new file.
	* macros/enable-rtemsbsp.m4: new file.
	* macros/enable-tests.m4: new file.
	* macros/gcc-pipe.m4: new file.
	* macros/gcc-specs.m4: new file.
	* macros/i386-gas-code16.m4: new file.
	* macros/path-ksh.m4: new file.
	* macros/path-perl.m4: new file.
	* macros/prog-cc.m4: new file.
	* macros/prog-cxx.m4: new file.
	* macros/project-root.m4: new file.
	* macros/rtems-top.m4: new file.
	* macros/sysv-ipc.m4: new file.
	* macros/target.m4: new file.
	* macros/rtems-test-no-pause.m4: new file.
	* macros/multilib.m4: new file.
	* macros/tool-paths.m4: new file.
	* macros/tool-prefix.m4: new file.

2000-09-14	Joel Sherrill <joel@OARcorp.com>

	* Makefile.am: Referenceed aclocal/enable-hwapi.m4 that was removed.

2000-09-14	Joel Sherrill <joel@OARcorp.com>

	* aclocal/enable-hwapi.m4: Now longer used and removed.

2000-09-13	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/lib.am: Remove leaf.cfg.

2000-09-13	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/rtems-top.m4: Add ENDIF-hack.
	* automake/compile.am: Add include $(DEPENDS) + ENDIF-hack.

2000-09-12	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-cxx.m4: Add AC_SUBST(CPLUS_LD_LIBS)
	* aclocal/prog-cc.m4: Cleanup comments, require RTEMS_ENABLE_GCC28,
	add automake conditionals RTEMS_USE_GCC, RTEMS_USE_GCC272.
	* automake/compile.am: Replaced.
	* automake/local.am: Remove building variant handling.

2000-09-11	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/enable-rtemsbsp.m4: Add RTEMS_ENABLE_BARE,
	AC_SUBST(BARE_CPU_MODEL),AC_SUBST(BARE_CPU_CFLAGS).
	* aclocal/i386-gas-code16.m4: AC_DEFINE NEW_GAS.
	* aclocal/target.m4: Cleanup comments
	* Automake/compile.am: Add DEFS support to keep building happy.

2000-09-06	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/project-root.m4: Introduce PROJECT_TOPdir, add comments.

2000-09-04	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* automake/compile.am: New file
	* ChangeLog: Fix email addresses

2000-09-01	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* LICENSE.NET, README, README.configure: Spelling corrections.

2000-09-01	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-bsps.m4: Fix c4* and sim68000 entries

2000-08-30	Joel Sherrill <joel@OARcorp.com>

	* LICENSE.NET, LICENSE.RPCXDR, LICENSE.WEBSERVER: New files.

2000-08-25	Joel Sherrill <joel.sherrill@OARcorp.com>

	* ChangeLog: Moved incorrect entries to make/ChangeLog.

2000-08-17	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* aclocal/check-bsps.h: 
	  - Add pck6-BSP
	  - Exclude ChangeLog from being picked up as BSP 
	* aclocal/bsp-alias.m4: Add pck6-BSP

2000-08-10	Joel Sherrill <joel@OARcorp.com>

	* ChangeLog: New file.