summaryrefslogtreecommitdiffstats
path: root/scripts/ChangeLog
blob: 3666416a3d2c64de90a083cf89a8c3a28720a8ae (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
2005-09-03	Ralf Corsepius <ralf.corsepius@rtems.org>

	* binutils/binutils.add: Remove dlltool, nlmconv, windres man pages.

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

	* common/common.add.in: Remove Vendor:. Remove Distribution:.
	* Makefile.am, autotools/Makefile.am, binutils/Makefile.am
	cpukit/Makefile.am, gccnewlib/Makefile.am, gdb/Makefile.am
	rtems/Makefile.am: Rename *.spec into @rpmprefix@*.spec.
	* binutils/base-binutils.add, binutils/binutils.add,
	binutils/target-binutils.add, common/common.add.in,
	cpukit/rtems-cpukit.add, cpukit/target-cpukit.add, 
	gccnewlib/base-g77.add, gccnewlib/base-gcc.add,
	gccnewlib/base-gcj.add, gccnewlib/base-gfortran.add,
	gccnewlib/base-gnat.add, gccnewlib/gccnewlib.add,
	gccnewlib/target-c++.add, gccnewlib/target-g77.add,
	gccnewlib/target-gcc.add, gccnewlib/target-gcj.add,
	gccnewlib/target-gfortran.add, gccnewlib/target-gnat.add,
	gccnewlib/target-libc.add, gccnewlib/target-objc.add,
	gdb/base-gdb.add, gdb/gdb.add, gdb/target-gdb.add,
	rtemsdoc/rtemsdoc.add, rtemsdoc/supplement.add.in,
	rtemsdoc/templ.add.in, rtems/rtems-source.add:
	Replace %{rpmprefix} with @rpmprefix@.
	* cpukit/mkspec.in, rtems/mkspec.in: Propagate @rpmprefix@.

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

	* gccnewlib/Makefile.am: Use target-libc.add
	* gccnewlib/gccnewlib.add, gccnewlib/target-gcc.add,
	gccnewlib/target-libc.add: Misc. fixes.

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

	* gdb/gdb.add: Remove Packager:.

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

	* gccnewlib/base-g77.add, gccnewlib/base-gcc.add,
	gccnewlib/base-gcj.add, gccnewlib/target-c++.add,
	gccnewlib/target-g77.add, gccnewlib/target-gcc.add,
	gccnewlib/target-gcj.add, gccnewlib/target-gfortran.add,
	gccnewlib/target-gnat.add, gccnewlib/target-objc.add:
	Switch to using %gcc_version.

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

	* gccnewlib/target-c++.add, gccnewlib/target-g77.add,
	gccnewlib/target-gcj.add, gccnewlib/target-gfortran.add,
	gccnewlib/target-gnat.add, gccnewlib/target-objc.add:
	Fix directory ownerships.
	* binutils/binutils.add: Remove Packager:.
	* binutils/target-binutils.add: Further adaptations to /usr.

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

	* gccnewlib/target-libc.add: New.

2005-08-30	Ralf Corsepius <ralf.corsepius@rtems.org>

	* gccnewlib/target-gcc.add: Add Requires/Provides *-newlib/*-libc.

2005-08-30	Ralf Corsepius <ralf.corsepius@rtems.org>

	* gccnewlib/base-g77.add, gccnewlib/base-gcc.add,
	gccnewlib/gccnewlib.add, gccnewlib/target-c++.add,
	gccnewlib/target-g77.add, gccnewlib/target-gcj.add,
	gccnewlib/target-gfortran.add, gccnewlib/target-gnat.add,
	gccnewlib/target-objc.add: Use gccnewlib_version.
	Cosmetics. Minor cleanups.

2005-08-30	Ralf Corsepius <ralf.corsepius@rtems.org>

	* gccnewlib/base-gcc.add: Remove %_includedir.
	* gccnewlib/base-g77.add: Remove %_mandir.
	Remove %{gcc_target}-g77.1.
	* gccnewlib/base-gfortran.add: Remove %_mandir.
	Remove %{gcc_target}-gfortran.1.
	* gccnewlib/gccnewlib.add: Remove Packager:.
	Add %gccnewlib_version.
	* gccnewlib/target-c++.add: Remove %_bindir.
	* gccnewlib/target-g77.add: Add %{gcc_target}-g77.1.
	* gccnewlib/target-gcj.add: Remove %_bindir.
	Remove %_mandir.
	* gccnewlib/target-gfortran.add: Remove %_bindir.
	Add %{gcc_target}-gfortran.1.
	* gccnewlib/target-gnat.add: Remove %_bindir.

2005-08-29	Joel Sherrill <joel@OARcorp.com>

	* setup.def, gdb/gdb.add: Use DESTDIR as override with gdb 6.3.

2005-08-25	Ralf Corsepius <ralf.corsepius@rtems.org>

	* gccnewlib/gccnewlib.add: Remove vxaddr2line.
	Further minor cleanup.

2005-08-16	Ralf Corsepius <ralf.corsepius@rtems.org>

	* binutils/binutils.add:
	Special-case _prefix=/usr.
	* gccnewlib/base-g77.add, gccnewlib/base-gcc.add,
	gccnewlib/base-gcj.add, gccnewlib/base-gfortran.add,
	gccnewlib/base-gnat.add, gccnewlib/gccnewlib.add:
	Special-case _prefix=/usr.

2005-08-15	Ralf Corsepius <ralf.corsepius@rtems.org>

	* gccnewlib/Makefile.am: Remove h8300-rtemscoff.
	* binutils/Makefile.am: Remove h8300-rtemscoff.

2005-07-28	Ralf Corsepius <ralf.corsepius@rtems.org>

	* autotools/automake.add: Update to automake-1.9.6.
	* brp-rtems-strip.in: New.
	* brp-rtems-compress.in: New.
	* binutils/binutils.add: Reflect using brp-rtems*.
	* gccnewlib/gccnewlib.add: Reflect using brp-rtems*.

2005-07-06	Ralf Corsepius <ralf.corsepius@rtems.org>

	* binutils/binutils.add: Take out -D_FORTIFY_SOURCE from CFLAGS
	to prevent fortify from rendering ar unusable.

2005-07-05	Ralf Corsepius <ralf.corsepius@rtems.org>

	* binutils/mkspec.in, gccnewlib/mkspec.in, gdb/mkspec.in:
	Use ',' as sed pattern delimiter.
	* autotools/automake.add: Add %{?dist}.
	* autotools/autoconf.add: Add %{?dist}.
	Replace Copyright: by Licence:. 
	* gccnewlib/gccnewlib.add: Remove Epoch.

2005-05-20	Ralf Corsepius <ralf.corsepius@rtems.org>

	* binutils/base-binutils.add, gccnewlib/base-g77.add,
	gccnewlib/base-gcc.add, gccnewlib/base-gcj.add,
	gccnewlib/base-gfortran.add, gccnewlib/base-gnat.add,
	gdb/base-gdb.add: install-info --info-dir=.

2005-05-18	Ralf Corsepius <ralf.corsepius@rtems.org>

	* gccnewlib/mkspec.in: Correct patch handling magic.
	* gccnewlib/gccnewlib.add: Reflect changes to mkspec.in.
	Use --with/--without, rework logic for building optional languages.
	* gccnewlib/header.add: Document --with/--without.

2005-05-10	Ralf Corsepius <ralf.corsepius@rtems.org>

	* gccnewlib/Makefile.am: Add h8300-rtemscoff*.
	* gccnewlib/gccnewlib.add: Let building gnat require gcc.
	Allow building arm-rtems*-gnat.

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

	* gccnewlib/gccnewlib.add: Further clean up of tools not supported
	by individual targets. Add %build_libgcj.
	* gccnewlib/target-gcc.add: Remove dep to base-gcc.

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

	* gccnewlib/gccnewlib.add: Suppress building tools not supported by
	avr, h8300 and mips.
	* rtemsdoc/supplement.add.in, rtemsdoc/templ.add.in: Misc.
	%infodir/dir handling changes.
	* rtemsdoc/rtemsdoc.add: Use BuildRequires instead of BuildPreReq
	(rpm anachronism).
	* gdb/base-gdb.add, gdb/gdb.add: Misc. %infodir/dir handling
	changes.
	* gccnewlib/base-g77.add, gccnewlib/base-gcc.add,
	gccnewlib/base-gcj.add, gccnewlib/base-gfortran.add,
	gccnewlib/base-gnat.add: Misc. %infodir/dir handling changes.
	* common/common.add.in: Use FC compliant BuildRoot.
	* gccnewlib/gccnewlib.add: Remove gnatgcc hacks.
	Misc  %infodir/dir handling changes.
	* gccnewlib/target-c++.add, gccnewlib/target-g77.add,
	gccnewlib/target-gcj.add, gccnewlib/target-gfortran.add,
	gccnewlib/target-gnat.add, gccnewlib/target-objc.add:
	Requires: %{rpmprefix}%{gcc_target}-gcc = %{version}-%{release}.

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

	* binutils/base-binutils.add, binutils/binutils.add:
	Misc %infodir/dir handling changes.

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

	* configure.ac: Reflect changes to autotools/*.
	* autotools/Makefile.am: Update.

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

	* autotools/automake-rtems.spec.in, autotools/autoconf-rtems.spec.in:
	Remove.
	* autotools/automake.add, autotools/autoconf.add,
	autotools/header.add: New.
	* autotools/Makefile.am: Streamline specs generation with other
	tools.

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

	* gccnewlib/gccnewlib.add: Don't build mips-gcj. Further gnat
	cleanup.
	* rtemsdoc/supplement.add.in, rtemsdoc/templ.add.in: Misc. info
	fixes.

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

	* gccnewlib/base-gnat.add, gccnewlib/gccnewlib.add,
	gccnewlib/target-gnat.add: Abandon Gnat for gcc < 4.0

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

	* gccnewlib/base-gfortran.add: Fix broken install-info.
	* gccnewlib/base-gnat.add, gccnewlib/target-gnat.add: Adaptations 
	to gcc-4.0.0. Install infos using FC conventions.

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

	* autotools/automake-rtems.spec.in,
	autotools/autoconf-rtems.spec.in: Remove rpm anachronisms.

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

	* binutils/binutils.add: Install infos using FC conventions.
	* binutils/base-binutils.add: Install infos using FC conventions.
	* gdb/base-gdb.add: Install infos using FC conventions.

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

	* gccnewlib/base-gcc.add: Install infos using FC conventions.
	* gccnewlib/base-gcj.add: Install infos using FC conventions.
	Various minor fixes.
	* gccnewlib/base-gfortran.add: Install infos using FC conventions.
	* gccnewlib/target-gcj.add: Various minor fixes.

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

	* binutils/binutils.add: Use BuildRequires instead of BuildPreReq.
	* gccnewlib/gccnewlib.add: Use BuildRequires instead of BuildPreReq.
	* gdb/gdb.add: Use BuildRequires instead of BuildPreReq.
	* gccnewlib/gccnewlib.add: Remove Source0-magic for gcc < 3.0.
	* gccnewlib/gccnewlib.add: Abandon c4x-*.

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

	* gccnewlib/gccnewlib.add: Use %_bindir, %_libdir, %_includedir.
	* gccnewlib/target-gfortran.add: Let package obsolete g77.
	* gccnewlib/target-objc.add: Reflect new location of cc1obj.

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

	* gdb/gdb.add: Propagate RPM_OPT_FLAGS to configure.

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

	* binutils/Makefile.am: Add h8300-rtemscoff.
	Remove or32-rtems.
	* binutils/binutils.add: Propagate RPM_OPT_FLAGS to configure.

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

	* gccnewlib/base-gfortran.add, gccnewlib/target-gfortran.add: New.
	* gccnewlib/Makefile.am: Reflect addition of gfortran.
	* gccnewlib/base-g77.add, gccnewlib/base-gcc.add, gccnewlib/base-gcj.add,
	gccnewlib/base-gnat.add, gccnewlib/target-g++.add, gccnewlib/target-g77.add,
	gccnewlib/target-gcc.add, gccnewlib/target-gcj.add,
	gccnewlib/target-gnat.add:
	Remove RPM_INSTALL_PREFIX. Remove superfluous
	%doc directives. Use %_infodir, %_includedir, %_bindir, %_libdir.
	* gccnewlib/gccnewlib.add: Ditto.
	Add further BR's, Reflect addition of gfortran.
	Reflect gcc's changes to "version_string".

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

	* binutils/base-binutils.add, binutils/binutils.add,
	binutils/target-binutils.add: Introduce %{_includedir}, %{_libdir},
	%{_bindir}. Remove superfluous %doc. Misc. fixes.

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

	* gdb/base-gdb.add, gdb/gdb.add, gdb/target-gdb.add:
	Use mkdir -p. Introduce %{_includedir}, %{_libdir}. Remove
	superfluous %doc.

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

	* configure.ac: chmod +x rtems/mkspec.
	* binutils/binutils.add: Remove Prefix.
	Use mkdir -p.
	* cpukit/rtems-cpukit.add: Fix Source URL.
	* rtems/Makefile.am: Append @osversion@ to rules.
	* rtems/rtems.add: Fix Source URL. Misc cosmetics.

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

	* gdb/mkspec.in: Remove extra_configure_arguments (Unused).
	* cpukit/rtems-cpukit.add, cpukit/target-cpukit.add: Bring this rpm
	functional, again.

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

	* rtems/Makefile.am: Reworked.
	* setup.def: Update rtems_version. Remove rpm_build_root.

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

	* rtems/mkspec.in: New.
	* mkbspspec.in: Remove.
	* Makefile.am: Reflect changes above.
	* configure.ac: Reflect changes above.

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

	* common/clean.add.in: Always rm -rf $RPM_BUILD_ROOT.

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

	* gdb/base-gdb.add, gdb/gdb.add, gdb/target-gdb.add: Various
	changes and hacks.

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

	* binutils/mkspec.in: Remove rpm_build_root.
	* common/common.add.in: Remove _defaultbuildroot.
	* cpukit/mkspec.in: Remove rpm_build_root.
	* gccnewlib/mkspec.in: Remove rpm_build_root.
	* gdb/mkspec.in: Remove rpm_build_root.
	* gccnewlib/gccnewlib.add: Let %install rm -f $RPM_BUILD_ROOT.
	* binutils/binutils.add: Let %install rm -f $RPM_BUILD_ROOT.

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

	* gdb/Makefile.am: Remove obsolete targets.
	* gdb/gdb.add: Pass bindir, infodir, mandir to configure.

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

	* binutils/Makefile.am, gdb/Makefile.am: Move target-*.add before
	base*.add.
	* gdb/gdb.add, gdb/target-gdb.add: Introduce %{_infodir}, %{_mandir},
	%{_bindir}. Various minor fixes.
	Rename src.rpm into <target>-gdb.
	Disable sim for avr.

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

	* setup.def, gdb/gdb.add: Add gdb_suffix.

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

	* gcc3newlib/HISTORY, gcc3newlib/Makefile.am, gcc3newlib/README,
	gcc3newlib/base-g77.add, gcc3newlib/base-gcc.add, 
	gcc3newlib/base-gcj.add, gcc3newlib/base-gnat.add, 
	gcc3newlib/gccnewlib.add, gcc3newlib/header.add,
	gcc3newlib/mkspec.in, gcc3newlib/target-c++.add,
	gcc3newlib/target-g77.add, gcc3newlib/target-gcc.add,
	gcc3newlib/target-gcj.add, gcc3newlib/target-gnat.add,
	gcc3newlib/target-objc.add: Remove.

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

	* gccnewlib/mkspec.in: Use gccnewlib/ instead of gcc3newlib/.

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

	* Makefile.am, configure.ac: Use gccnewlib/ instead of gcc3newlib/.
	* README.cdn-X: Minor updates.

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

	* gccnewlib/.cvsignore, gccnewlib/Makefile.am,
	gccnewlib/README, gccnewlib/base-g77.add,
	gccnewlib/base-gcc.add, gccnewlib/base-gcj.add,
	gccnewlib/base-gnat.add, gccnewlib/gccnewlib.add,
	gccnewlib/header.add, gccnewlib/mkspec.in,
	gccnewlib/target-c++.add, gccnewlib/target-g77.add,
	gccnewlib/target-gcc.add, gccnewlib/target-gcj.add,
	gccnewlib/target-gnat.add, gccnewlib/target-objc.add:
	New.

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

	* cpukit/rtems-cpukit.add, gdb/gdb.add:
	Fix my email address, cosmetics.

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

	* setup, setup.def, gcc3newlib/mkspec.in:
	s/gcc3newlib_rpm_release/gccnewlib_rpm_release/g.

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

	* setup: Fixup messages.

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

	* binutils/target-binutils.add, cpukit/rtems-cpukit.add,
	gcc3newlib/gccnewlib.add, gdb/gdb.add, rtemsdoc/rtemsdoc.add:
	Remove Autoreqprov-tag.

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

	* gcc3newlib/gccnewlib.add: Default to not building gcj for all gcc
	versions. Cleanup comments.

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

	* configure.ac, setup, setup.def, gcc3newlib/mkspec.in:
	Use newlib_* instead of gcc3newlib_* for setup.* values.

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

	* configure.ac, setup, setup.def, gcc3newlib/mkspec.in:
	Use gcc_* instead of gcc3_* for setup.* values.

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

	* binutils/binutils.add, gdb/gdb.add: Sync %setup with gcc/gcc.add
	for consistency.

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

	* binutils/binutils.add, gcc3newlib/gccnewlib.add, gdb/gdb.add:
	Apply patches in tool subdirs.

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

	* binutils/binutils.add, binutils/mkspec.in:
	Eliminate @PATCH2@.
	* gcc3newlib/gccnewlib.add, gcc3newlib/mkspec.in:
	Eliminate @PATCH2@, @PATCH4@.
	* gdb/gdb.add, gdb/mkspec.in:
	Eliminate @PATCH2@.

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

	* binutils/binutils.add, gcc3newlib/gccnewlib.add,
	gdb/gdb.add: Add support for rpmbuild --with sources.

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

	* gdb/Makefile.am: Add avr, mips64.
	Cosmetics.
	* gdb/base-gdb.add: Reflect gdb-6.3 not shipping mmalloc.info*.
	* gdb/target-gdb.add: Add support for gcc-6.3's gdbtui.
	* gdb/mkspec.in: Add PATCH-magic.
	Add gdb_suffix.

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

	* binutils/binutils.add, binutils/mkspec.in, setup.def:
	Add binutils_suffix.
	* binutils/target-binutils.add: Preparations for binutils-2.16.

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

	* gcc3newlib/gccnewlib.add, gcc3newlib/mkspec.in, setup.def:
	Add gcc_suffix. Add newlib_suffix.

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

	* autotools/automake-rtems.spec.in: automake-1.9.5.

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

	* gcc3newlib/Makefile.am: Remove sh-rtemself. Add sh-rtemscoff.

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

	* gcc3newlib/gccnewlib.add: Disable Ada (Stil broken with GCC-4.0.0).

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

	* gcc3newlib/gccnewlib.add: Change my email address.
	Add tic4x-*.

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

	* autotools/automake-rtems.spec.in: automake-1.9.4.

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

	* setup.def: Include PowerPC patch to make C++ global constructors work
	-- gcc 3.3.5/newlib-1.12.0 revision 2.

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

	* setup.def: Update gcc to 3.3.5 and binutils to 2.15.
	* autotools/autoconf-rtems.spec.in: Temporarily do not include
	some of the documentation since it causes the RPM build to fail.
	* binutils/Makefile.am, gcc3newlib/Makefile.am: Add mips64-rtems.

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

	* buildall.in, buildalltar.in, binutils/Makefile.am,
	cpukit/Makefile.am, gcc3newlib/Makefile.am, gcc3newlib/gccnewlib.add,
	gdb/Makefile.am, rtems/Makefile.am, rtemsdoc/.cvsignore,
	rtemsdoc/Makefile.am: i960 obsoleted.

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

	* configure.ac: Require automake > 1.9.

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

	* binutils/binutils.add: Rename package from binutils-collection to
	binutils. Cleanups.
	* binutils/target-binutils.add: Reflect changes above.
	* binutils/Makefile.am: Add avr. Reflect changes above.
	* autotools/autoconf-rtems.spec.in: Cleanup for chroot'ed builds.
	* autotools/automake-rtems.spec.in: automake-1.9.2.
	Cleanup for chroot'ed builds.
	* gcc3newlib/Makefile.am: Add avr-rtems*gcc.
	* gcc3newlib/gccnewlib.add: Disable c++ for avr.

2004-07-29	Ralf Corsepius <ralf_corsepius@rtems.org>

	* autotools/automake.spec.in: automake-1.9.

2004-05-23	Joel Sherrill <joel@OARcorp.com>

	* gcc3newlib/gccnewlib.add: gcc 3.4.0 is broken for embedded SPARC and
	Ada. Until we can fix it, it is disabled.

2004-05-23	Joel Sherrill <joel@OARcorp.com>

	* gcc3newlib/target-gnat.add: Fix path to gnat1.

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

	* binutils/Makefile.am: Add sh-rtemscoff.
	Remove sh-rtemself.
	* binutils/binutils.add: BuildRequires flex.
	* autotools/automake-rtems.spec.in: Automake 1.8.5.

2004-04-29	Ralf Corsepius <ralf_corsepius@rtems.org>

	* gcc3newlib/gccnewlib.add: Another attempt to make *info.gz
	handling more robust.

2004-04-26	Ralf Corsepius <ralf_corsepius@rtems.org>

	* autotools/automake-rtems.spec.in: Upgrade to 1.8.4.

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

	* Index: base-g77.add, base-gcc.add, base-gcj.add, base-gnat.add,
	gccnewlib.add, target-c++.add, target-gcc.add, target-gcj.add:
	Apply _infodir, _mandir. Gzip man pages. 
	Reflect gcc having fixed gccinstall.info.

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

	* binutils/base-binutils.add: Apply _infodir.
	Don't install libiberty. Misc. cleanups.
	* binutils/binutils.add: Apply _infodir, _mandir.
	Don't install libiberty. Gzip man pages. Misc. cleanups.
	* binutils/target-binutils.add: Apply _mandir.

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

	* autotools/automake-rtems.spec.in: Upgrade to 1.8.3.

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

	* gcc3newlib/gccnewlib.add: Disable gnats. 
	Further preparations for gcc-3.4.0
	* gcc3newlib/base-gcc.add, gcc3newlib/target-gnat.add,
	gcc3newlib/base-gcj.add, gcc3newlib/target-gcj.add:
	Reflect changes to gcc3newlib/gccnewlib.add.

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

	* gcc3newlib/base-gcc.add, gcc3newlib/target-g77.add,
	gcc3newlib/target-objc.add: Preps for gcc-3.4.0.
	Reflect changes to gcc3newlib/gccnewlib.add.

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

	* gcc3newlib/target-gcc.add, gcc3newlib/target-c++.add:
	Reflect changes to gcc3newlib/gccnewlib.add.

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

	* gcc3newlib/gccnewlib.add: Preps. for gcc-3.4.0.
	Add %gcclib, %gccexec.

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

	* binutils/base-binutils.add: Preparations for binutils-2.15.

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

	PR 580/tools
	* setup.def: Fix setup.def to match current reality.

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

	* gdb/base-gdb.add: Add annotate.info.
	* gdb/gdb.add: Remove info/dir.

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

	* Makefile.am, gdb/Makefile.am: Cosmetics.

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

	* setup.def, gdb/gdb.add: gdb 6.0 RPMs built.

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

	* ChangeLog: Replace RTEMS user account with Joel.

2004-02-17	Joel Sherrill <joel@oarcorp.com>

	* setup.def, gdb/base-gdb.add, gdb/gdb.add: Building a gcc 3.2.3 i960
	gcc and updating gdb to 5.3.

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

	* configure.ac, setup, setup.def: Remove now unused vars.

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

	* mkgccnewlibspec.in, gccnewlib/.cvsignore, gccnewlib/HISTORY,
	gccnewlib/Makefile.am, gccnewlib/README, gccnewlib/base-chill.add,
	gccnewlib/base-g77.add, gccnewlib/base-gcc.add, gccnewlib/base-gcj.add,
	gccnewlib/gccnewlib.add, gccnewlib/header.add,
	gccnewlib/target-chill.add, gccnewlib/target-g77.add,
	gccnewlib/target-gcc.add, gccnewlib/target-gcj.add,
	gccnewlib/target-objc.add: Remove (Obsolete).
	* configure.ac, Makefile.am: Reflect changes above.

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

	* gcc3newlib/gcc3newlib.add: Remove info/dir.
	Cosmetics.

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

	* setup.def: Adapt to what Joel already ships -
	gcc3_version=3.3.2, gcc3_patch_version=20031216,
	gcc3newlib_rpm_release=3

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

	* configure.ac: Remove rtemsdoc/mkspec. Add RTEMS_RPM_RELEASE.
	* rtemsdoc/.cvsignore: Reformat.
	* Makefile.am: Reformat. Add RTEMS_RPM_RELEASE support to
	rtems-source.add, Use rtems_source_spec_DEPS instead of
	rtems_source_spec_DEPENDENCIES (Conflicts with automake internals).
	* rtems/rtems-source.add: Add RTEMS_RPM_RELEASE.
	* rtemsdoc/mkspec.in: Remove.
	* rtemsdoc/Makefile.am: Reworked.
	* rtemsdoc/header.add: Update Copyright notice.
	* rtemsdoc/rtemsdoc.add: Add RTEMS_RPM_RELEASE.
	Add %{rpmgroup}. Remove bzip-ing *.ps.
	* rtemsdoc/supplement.add.in: Add %{rpmgroup}.
	* rtemsdoc/templ.add.in: Add %{rpmgroup}.

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

	* rtems/rtems-source.add: Require automake-1.8.2, autoconf-2.59.

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

	* rtems/rtems-source.add: New.
	* Makefile.am: Add rtems/rtems-source.spec handling.
	* configure.ac: AC_SUBST(RTEMS_VERSION,[_RTEMS_VERSION]).
	* common/common.add.in: Use www.rtems.com as Vendor.

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

	* configure.ac: Use RTEMS_ENABLE_RPMPREFIX.

2004-01-28	Joel Sherrill <joel@oarcorp.com>

	* buildall.in, buildalltar.in, binutils/Makefile.am,
	cpukit/Makefile.am, gcc3newlib/Makefile.am, gccnewlib/Makefile.am,
	gdb/Makefile.am: Attempt to convert all c4x-rtems references to
	tic4x-rtems. Left the rtems documentation alone.

2004-01-28	Joel Sherrill <joel@oarcorp.com>

	* configure.ac: Enable OS versioning by default for 4.7 branch.
	* setup.def: Update binutils RPM version and build new gcc 3.2.3 RPMs.
	* autotools/autoconf-rtems.spec.in, autotools/automake-rtems.spec.in:
	Update for new tool spin.

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

	* scripts/automake.spec.in: 1.8.2.

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

	* scripts/automake.spec.in: 1.8.1.
	Add Patch0 automake-1.8.1-rtems-20040112-1.diff.
	Add defattr, URL:-tag.

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

	* setup.def: Update gcc/newlib for 4.7 series to 3.3.2 with 20031216
	gcc patch (RPM revision 4.7-2).

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

	* buildall.in, buildalltar.in, binutils/Makefile.am,
	cpukit/Makefile.am, gcc3newlib/Makefile.am, gccnewlib/Makefile.am,
	gdb/Makefile.am, rtems/Makefile.am, rtemsdoc/.cvsignore,
	rtemsdoc/Makefile.am: mips64orion port removed as mips port more
	completely covers the MIPS family.

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

	* setup.def: Update gcc/newlib for 4.7 series to 3.3.2 with 20031022
	gcc patch (RPM revision 4.7-1).

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>

	* Makefile.am: Cosmetics.
	* autotools/Makefile.am: Cosmetics.
	* autotools/autoconf-rtems.spec.in: 2.59.
	* autotools/automake-rtems.spec.in: 1.8, Require autoconf-2.59.
	* binutils/Makefile.am: Cosmetics.
	* cpukit/Makefile.am: Cosmetics.
	* gcc3newlib/Makefile.am: Cosmetics.
	* gccnewlib/Makefile.am: Cosmetics.
	* gdb/Makefile.am: Cosmetics.
	* rtems/Makefile.am: Cosmetics.
	* rtemsdoc/Makefile.am: Cosmetics.

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

	* gcc3newlib/gccnewlib.add: Add hacks to make gnatlib
	buildable.
	* gcc3newlib/base-gnat.add: Add info files.

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

	* gcc3newlib/gccnewlib.add: Make not building gnat and gcj the
	default for gcc-3.3.

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

	* binutils/Makefile.am: Add tic4x.
	* binutils/mkspec.in: Remove duplicate rpmgroup.

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

	* gcc3newlib/Makefile.am: Add tic4x.
	* gcc3newlib/gccnewlib.add: Don't install install-tools for 
	gcc >= 3.3.

2003-10-22	Joel Sherrill <joel@OARcorp.com>

	* configure.ac, setup.def: Update to binutils 2.14 adn gcc/newlib to
	3.2.3 with 20030826 gcc patch.

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

	* cpukit/target-cpukit.add: New.
	* cpukit/Makefile.am: Reflect having added target-cpukit.add.
	Acknowledge osversion.
	* cpukit/mkspec.in: Acknowledge osversion and rpmgroup.
	* cpukit/rtems-cpukit.add: Reflect new RTEMS spec conventions.

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

	* autotools/automake-rtems.spec.in: Automake-1.7.8.

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

	* buildall.in, buildalltar.in, binutils/Makefile.am,
	cpukit/Makefile.am, gcc3newlib/Makefile.am, gccnewlib/Makefile.am,
	gdb/Makefile.am, rtems/Makefile.am, rtemsdoc/.cvsignore,
	rtemsdoc/Makefile.am: Obsoleting HP PA-RISC port.

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

	* autotools/automake-rtems.spec.in: Automake-1.7.7.

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

	* gcc3newlib/gccnewlib.add: Fix duplicate removal of c++filt.
	* gcc3newlib/base-gcj.add: Add fastjar.info, jar.1, grepjar.1.
	* setup.def: gcc3newlib_rpm_release=4.

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

	* binutils/base-binutils.add: Add osversion support.
	* binutils/binutils.add: Add osversion support.
	%setup -n %{name}-%{version}.
	Don't remove c++filt.
	* binutils/target-binutils.add: Add osversion support.
	Pickup c++filt.
	* gcc3newlib/base-g77.add: Add osversion support.
	* gcc3newlib/base-gcc.add: Add osversion support.
	* gcc3newlib/base-gcj.add: Add osversion support.
	* gcc3newlib/base-gnat.add: Add osversion support.
	* gcc3newlib/gccnewlib.add: Add osversion support.
	Remove c++filt,
	%setup -n -n %{name}-%{version}.
	* gcc3newlib/target-c++.add: Add osversion support.
	Don't pickup c++filt.
	* gcc3newlib/target-g77.add: Add osversion support.
	* gcc3newlib/target-gcc.add: Add osversion support.
	* gcc3newlib/target-gcj.add: Add osversion support.
	* gcc3newlib/target-gnat.add: Add osversion support.
	* gccnewlib/gccnewlib.add: %setup -n %{name}-%{version}.
	* gdb/base-gdb.add: Add osversion support, rpmgroup, rpmprefix,
	gdb_version, gdb_target.
	* gdb/target-gdb.add: Ditto.
	* gdb/gdb.add: Ditto.
	%setup -n -n %{name}-%{version}.

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

	* binutils/Makefile.am: Fix osversion support for sh-rtemself.
	* gcc3newlib/Makefile.am: Fix osversion support for sh-rtemself.

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

	* configure.ac: Add --enable-osversions (OS-versioned RPMS support).
	* binutils/Makefile.am: Add osversion support.
	* binutils/mkspec.in: Add osversion support.
	* gcc3newlib/Makefile.am: Add osversion support.
	* gcc3newlib/mkspec.in: Add osversion support.
	* gdb/Makefile.am: Add osversion support.
	* gdb/mkspec.in: Add osversion support.
	Add rpmprefix, rpmgroup.

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

	* Makefile.am, configure.ac,
	autotools/autoconf-rtems.spec.in, autotools/automake-rtems.spec.in,
	binutils/Makefile.am, binutils/base-binutils.add, 
	binutils/binutils.add, binutils/mkspec.in, 
	binutils/target-binutils.add,
	common/common.add.in,
	cpukit/Makefile.am,
	gcc3newlib/Makefile.am, gcc3newlib/base-g77.add,
	gcc3newlib/base-gcc.add, gcc3newlib/base-gcj.add,
	gcc3newlib/base-gnat.add, gcc3newlib/gccnewlib.add,
	gcc3newlib/mkspec.in, gcc3newlib/target-c++.add,
	gcc3newlib/target-g77.add, gcc3newlib/target-gcc.add,
	gcc3newlib/target-gcj.add, gcc3newlib/target-gnat.add,
	gcc3newlib/target-objc.add, 
	gccnewlib/Makefile.am,
	gdb/Makefile.am,
	rtems/Makefile.am,
	rtemsdoc/Makefile.am:
	Merger from rtems-4-6-branch.
	* common/common.am: New.

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

	* common/common.add.in: s/www.oarcorp.com/www.rtems.com/.
	Add %define __os_install_post %{nil} to prevent RH-9's rpm-brp-strip
	from running (Chokes on foreign object formats).
	* gcc3newlib/base-g77.add: 
	Use %{gcc_version} instead of @gcc_version@.
	* gcc3newlib/gccnewlib.add:
	Use %{gcc_version} instead of @gcc_version@.
	Reflect gcc >= 3.3 shipping monolytic infos.
	* gcc3newlib/target-c++.add:
	Use %{gcc_version} instead of @gcc_version@.
	Don't pickup c++filt.
	* gcc3newlib/target-g77.add:
	Use %{gcc_version} instead of @gcc_version@.
	* gcc3newlib/target-gcc.add:
	Use %{gcc_version} instead of @gcc_version@.
	* gcc3newlib/target-gcj.add:
	Use %{gcc_version} instead of @gcc_version@.
	* gcc3newlib/target-gnat.add:
	Use %{gcc_version} instead of @gcc_version@.
	* gcc3newlib/target-objc.add:
	Use %{gcc_version} instead of @gcc_version@.

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

	* binutils/binutils.add: Preps for 2.14.
	Use %{binutils_version} instead of @binutils_version@.
	* binutils/base_binutils.add: Preps for 2.14.

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

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

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

	* autotools/automake-rtems.spec.in: Automake-1.7.6.

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

	* autotools/automake-rtems.spec.in: Automake-1.7.5.

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

	* setup.def: Updated for RPM revision 3 of gcc3.2.3 and newlib1.11.0.

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

	* setup.def: Update to gcc3.2.3newlib1.11.0-1.
	* gcc3newlib/gccnewlib.add: We used .bz2 files.

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

	* setup.def: Update to gcc3.2.2newlib1.11.0-2.
	* gcc3newlib/gccnewlib.add: We used .bz2 files.

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

	* gcc3newlib/gccnewlib.add: Add %gcc_version, %newlib_version.
	Apply %gcc_version, %newlib_version.
	* gcc3newlib/target-c++.add: Apply %gcc_version, %newlib_version.
	* gcc3newlib/target-g77.add: Apply %gcc_version, %newlib_version.
	* gcc3newlib/target-gcc.add: Apply %gcc_version, %newlib_version.
	* gcc3newlib/target-gcj.add: Apply %gcc_version, %newlib_version.
	* gcc3newlib/target-gnat.add: Apply %gcc_version, %newlib_version.
	* gcc3newlib/target-objc.add: Apply %gcc_version, %newlib_version.

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

	* configure.ac: AM_INIT_AUTOMAKE([1.7.2]).

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

	* configure.ac: AC_PREREQ(2.57).

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

	* gdb/gdb.add, gdb/mkspec.in, gdb/target-gdb.add: Use RPM logic to
	determine which targets have simulators, configure with appropriate
	arguments, and package the correct files.

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

	* gcc3newlib/target-gcc.add: Remove %{_exeext} from gccbug.
	* gcc3newlib/gccnewlib.add: Add %gcj to support to disabling building
	gcj from rpmbuild command line.
	Copy gsyslimits.h for CDN-X compilation.

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

	* README.cdn-X: New.
	* binutils/binutils.add: Add --build=%_build --host=%_host.
	* cpukit/.cvsignore: Add *.spec.in.
	* gcc3newlib/gccnewlib.add: Add --build=%_build --host=%_host.
	* gdb/gdb.add: Add --build=%_build --host=%_host.
	* rtemsdoc/.cvsignore: Add *.spec.in.

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

	* gcc3newlib/gccnewlib.add: Remove Buildroot.
	* common/.cvsignore: New.

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

	* common/common.add.in: Add Vendor, Distribution, BuildRoot.
	* binutils/Makefile.am: Fix path to clean.add.
	* binutils/binutils.add: Remove BuildRoot.
	* cpukit/Makefile.am:  Use $(top_builddir)/common/common.add,
	$(top_builddir)/common/clean.add, header.add.
	Generate rtems-cpukit.spec.in.
	* cpukit/header.add: New.
	* cpukit/rtems-cpukit.spec.in: Remove.
	* cpukit/rtems-cpukit.add: New.
	* gccnewlib/gccnewlib.add: Remove Buildroot.
	* gdb/gdb.add: Remove Buildroot.
	* rtemsdoc/rtemsdoc.add: Remove BuildRoot.

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

	* rtemsdoc/Makefile.am: Use $(top_builddir)/common/common.add,
	$(top_builddir)/common/clean.add, header.add.
	Generate rtemsdoc.spec.in.
	* rtemsdoc/mkspec.in: Remove exe_ext.
	* rtemsdoc/rtemsdoc.spec.in: Remove.
	* gccnewlib/Makefile.am:  Use $(top_builddir)/common/common.add,
        $(top_builddir)/common/clean.add, header.add.
	* gccnewlib/base-gcc.m4: Replace @exe_ext@ with %{_exeext}.
	* gccnewlib/base-gcj.add: Replace @exe_ext@ with %{_exeext}.
	* gccnewlib/gccnewlib.add: Replace @exe_ext@ with %{_exeext}.
	Remove header, broken cdn-X configuration, %clean.
	* gccnewlib/target-g77.add: Replace @exe_ext@ with %{_exeext}.
	* gccnewlib/target-gcc.add: Replace @exe_ext@ with %{_exeext}.
	* gccnewlib/target-gcj.add: Replace @exe_ext@ with %{_exeext}.
	* gccnewlib/target-objc.add: Replace @exe_ext@ with %{_exeext}.

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

	* gdb/gdb.add: Remove header, broken cdn-X configuration,
	%clean, Replace @exe_ext@ with %{_exeext}.
	* gdb/mkspec.in: Remove exe_ext.
	* gdb/target-gdb.add: Replace @exe_ext@ with %{_exeext}.
	* gdb/Makefile.am: Use $(top_builddir)/common/common.add,
	$(top_builddir)/common/clean.add, header.add.
	* gcc3newlib/base-gcj.add: Replace @exe_ext@ with %{_exeext}.
	* cpukit/mkspec.in: Remove exe_ext.
	* binutils/Makefile.am: Use $(top_builddir)/common/common.add,
	$(top_builddir)/common/clean.add, header.add.

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

	* gcc3newlib/gccnewlib.add: Remove header, broken cdn-X configuration,
	%clean, Replace @exe_ext@ with %{_exeext}.
	* gcc3newlib/mkspec.in: Remove exe_ext.
	* gcc3newlib/target-c++.add: Replace @exe_ext@ with %{_exeext}.
	* gcc3newlib/target-g77.add: Replace @exe_ext@ with %{_exeext}.
	* gcc3newlib/target-gcc.add: Replace @exe_ext@ with %{_exeext}.
	* gcc3newlib/target-gcj.add: Replace @exe_ext@ with %{_exeext}.
	* gcc3newlib/target-gnat.add: Replace @exe_ext@ with %{_exeext}.
	* gcc3newlib/target-objc.add: Replace @exe_ext@ with %{_exeext}.
	* gcc3newlib/Makefile.am: Use $(top_builddir)/common/common.add,
	$(top_builddir)/common/clean.add, header.add.

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

	* Makefile.am: Remove reference to mkbinutilsspec.
	* configure.ac: Remove EXEEXT check.
	Add common/clean.add, common/common.add.

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

	* binutils/binutils.add: Remove header, broken cdn-X configuration,
	%clean.
	* binutils/mkspec.in: Remove exe_ext, build_alias, host_alias.
	* binutils/target-binutils.add: Replace @exe_ext@ with %{_exeext}.

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

	* gcc3newlib/header.add: New.
	* gccnewlib/header.add: New.
	* binutils/header.add: New.
	* gdb/header.add: New.
	* rtemsdoc/header.add: New.
	* rtemsdoc/rtemsdoc.add: New.
	* common/clean.add.in: New.
	* common/common.add.in: New.

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

	* binutils/mkspec.in: New.
	* binutils/.cvsignore: Add mkspec.
	* mkbinutilspec.in: Remove.
	* gdb/Makefile.am: Depend on mkspec.
	* binutils/binutils.add: Add @exe_ext@ to c++filt.
	Add %_defaultbuildroot.
	* configure.ac: Reflect changes above.
	* binutils/Makefile.am: Reflect changes above.
	* Makefile.am: Remove mkbinutilspec.

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

	* gdb/.cvsignore: Add mkspec.

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

	* ChangeLog: Fix yesterday's entry.
	* gdb/target-gdb.add: %defattr(-,root,root).
	Use %{_prefix} instead of /opt/rtems.
	Misc. minor changes.
	* gdb/gdb.add: Use %{_prefix} instead of /opt/rtems.
	Remove stray unpackaged files.
	Use %{_defaultbuildroot} instead of hard-coded values.
	configure --disable-nls.
	Misc. minor changes.
	Add BuildPreReq: ncurses-devel.
	* gdb/base-gdb.add: %defattr(-,root,root).
	Use %{_prefix} instead of /opt/rtems.
	Misc. minor changes.
	* gdb/mkspec.in: New.
	* gdb/Makefile.am: Reflect addition of gdb/mkspec.in.
	* gcc3newlib/mkspec.in: Fix usage.
	* gcc3newlib/gccnewlib.add: Use %{_defaultbuildroot} instead of
	hard-coded values. Update copyright notice.
	* mkgdbspec.in: Removed.
	* Makefile.am: Remove mkgdbspec.
	* configure.ac: Remove mkgdbspec.
	Add gdb/mkspec.

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

	* gcc3newlib/gccnewlib.add: Add various BuildPreReq.
	Add %defattr(-,root,root) to "dir".
	* gcc3newlib/base-g77.add: %defattr(-,root,root).
	* gcc3newlib/base-gcc.add %defattr(-,root,root).
	* gcc3newlib/base-gcj.add %defattr(-,root,root).
	* gcc3newlib/base-gnat.add %defattr(-,root,root).
	* gcc3newlib/target-c++.add %defattr(-,root,root).
	* gcc3newlib/target-g77.add %defattr(-,root,root).
	* gcc3newlib/target-gcc.add %defattr(-,root,root).
	* gcc3newlib/target-gcj.add %defattr(-,root,root).
	* gcc3newlib/target-gnat.add %defattr(-,root,root).
	* gcc3newlib/target-objc.add %defattr(-,root,root).

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

	* setup.def: binutils_rpm_release=2.
	* binutils/base-binutils.add: %defattr(-,root,root).
	* binutils/target-binutils.add: Ditto.
	* binutils/binutils.add: BuildPreReq: texinfo >= 4.2.

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

	* buildalltar.in, setup.def: Tool update including binaries for Cygwin
	with a special RTEMS user account.

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

	* configure.ac: Add rtemsdoc.
	* Makefile.ac: Add rtemsdoc.
	* rtemsdoc/README: New.
	* rtemsdoc/.cvsignore: New.

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

	* rtemsdoc/Makefile.am: New.
	* rtemsdoc/mkspec.in: New.
	* rtemsdoc/rtemsdoc.spec.in: New.
	* rtemsdoc/supplement.add.in: New.
	* rtemsdoc/templ.add.in: New.

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

	* setup.def: Updated gcc 3.2.1newlib1.10.0 RPM to revision 4
	to include m68k crti.o/crtn.o multilib patch.

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

	* autotools/automake-rtems.spec.in: Update to automake-1.7.2.
	* autotools/autoconf-rtems.spec.in: Update to autoconf-2.57.

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

	* ChangeLog: Removed duplicate entry.

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

	* setup.def: Updated patch to fix m68k cut and paste bug which turned
	a tab into spaces in a Makefile fragment.
	* gcc3newlib/gccnewlib.add: If building gnat for the mips, the library
	must be built with a -G0 option.

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

	* setup.def, gcc3newlib/gccnewlib.add: Updated to gcc 3.2.1 RPM revision
	2 which enabled the mips-rtems gnat using gcc 3.2.1 patch 20021129.

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

	* setup.def: Updated to gcc-3.2.1.

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

	* setup.def: Updated to gcc-3.2 and newlib1.1.0 RPM version 6.
	* gcc3newlib/gccnewlib.add: Reenabled i386-rtems gnat.

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

	* gcc3newlib/gccnewlib.add: 
	Remove *.la's to make rpm-4.1/RH-8.0 happy.
	Remove libiberty.a to make rpm-4.1/RH-8.0 happy.
	Change gcc/version.c to reflect us having patched gcc.

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

	* binutils/binutils.add: Add BuildPreReq: /sbin/install-info.
	Disable nls.
	Apply gzip -9qf to compress *infos and *mans.
	Apply /sbin/install-info.
	Remove  *c++-filt.
	* binutils/base-binutils.add: Add PreReq: /sbin/install-info.
	Apply /sbin/install-info.
	Package as.info-*.gz.
	* binutils/target-binutils.add: 
	Package man1/*.1*.

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

	* autotool/autoconf-rtems.spec.in: Fix @prefix@.

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

	* setup.def: Switched to binutils 2.13.1
	* binutils/Makefile.am: Remove a29k-rtems.

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

	* setup.def, gcc3newlib/gccnewlib.add: Patch includes updates
	which were patch changes for -3 and -4 RPM revisions.   Disabled
	build of gnat for i386-rtems as it failed to build.

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

	* gcc3newlib/gccnewlib.add: Remove %{target} != %{build} comment 
	(RH-8.0/rpm-4.1 bogusly expands the macros and chokes.)
	* binutils/binutils.add: Remove %{target} != %{build} comment
        (RH-8.0/rpm-4.1 bogusly expands the macros and chokes.).
	Comment out CONFIGURE_ARGS (RH-8.0/rpm-4.1 is broken wrt. _build_os
	and _target_os)
	* gcc3newlib/base-gcc.add: Add gccint*infos.
	* gcc3newlib/base-gcj.add: Add gcj*infos.
	Mark manpages as %doc and pickup the gzipped versions.

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

	* autotools/automake-rtems.spec.in: Fix my address. Set up PATH
	before running configure (Prep. for automake >= 1.7).

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

	* autotools/autoconf-rtems.spec.in: New.
	Remove Provides: autoconf (Conflicts with RH-8.0).
	* autotools/autoconf-rtems.spec: Remove.
	* autotools/automake-rtems.spec.in: 
	Remove Provides: automake (Conflicts with RH-8.0).
	* gcc3newlib/Makefile.am: Remove references to mkgcc3newlibspec.
	* Makefile.am: Ditto.
	* configure.ac: Add autotools/autoconf-rtems.spec.in.

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

	* setup.def: Update gcc 3.2 pathc to includ epatch for gcc PR8314.
	* gcc3newlib/gccnewlib.add: Don't build mips/gnat as we do not
	currently include the patch referenced in PR8344.

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

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

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

	* gcc3newlib/base-gcj.add, gcc3newlib/gccnewlib.add,
	gcc3newlib/target-gcj.add: First attempt at enabling Java support.

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

	* setup.def, gcc3newlib/gccnewlib.add: Updated the tools for 
	gcc 3.2 and Ada.

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

	* gcc3newlib/gccnewlib.add: Re-add i386-rtems Ada.
	Add %_gnat and --define 'gnat [0|1]' support.
	Enable gnat for gcc-3.2/Disable for gcc-3.1.
	Add hacks to build gnatlib.
	Re-activate commented out fragments for old gcc versions.
	Add @target_alias@-gnatgcc.

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

	* setup.def: New gcc 3.1 RPMs (-7).
	* gcc3newlib/gccnewlib.add:  i386-rtems doesn't build Ada.

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

	* gcc3newlib/Makefile.am: Remove c_only remnants.
	* gcc3newlib/gccnewlib.add: Reflect gcc-3.2 putting c++ 
	headers into c++ instead of g++.
	* gcc3newlib/target-c++.add: Ditto.

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

	* gcc3newlib/base-gnat.add: Don't use %{%prefix}/bin/gnat*.
	* gcc3newlib/Makefile.am: Use mkspec for c4x.
	* gcc3newlib/gccnewlib.add: Rework processing of %if %build_XXX.
	Rework handing Ada.
	Don't put adalib and adainclude into files.gcc.
	* gcc3newlib/target-gnat.add: Add adalib.
	Add adainclude.

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

	* gcc3newlib/base-gnat.add: Use -n rtems-base-gnat.

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

	* gcc3newlib/.cvsignore: Add mkspec.

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

	* mkgcc3newlibspec.in: Remove
	* gcc3newlib/mkspec.in: New.
	* configure.ac: Reflect changes above.
	* gcc3newlib/gccnewlib.add: Add build_XXX defines.
	Add preliminary gnat support.
	* gcc3newlib/base-g77.add: Add build_g77.
	* gcc3newlib/base-gcj.add: Add build_gcj.
	* gcc3newlib/base-gnat.add: New.
	* gcc3newlib/target-c++.add: Add build_cxx.
	* gcc3newlib/target-g77.add: Add build_g77.
	* gcc3newlib/target-gcj.add: Add build_gcj.
	* gcc3newlib/target-objc.add: Add build_objc.
	* gcc3newlib/target-gnat.add: New.
	* gcc3newlib/Makefile.am: Use ./mkspec. Use unified spec.

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

	* setup.def: Increment release for gcc3newlib.
	* gcc3newlib/gccnewlib.add: Do not put cc1plus into gcc-rpm.

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

	* setup.def, binutils/base-binutils.add, binutils/target-binutils.add:
	Updated to binutils 2.13 which has no known issues.

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

	* setup.def: Updating gcc3/newlib patches and tool versions.  The 
	focus of this round of patches was ot eliminate header file name
	conflicts between RTEMS and newlib.

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

	* setup.def: Updated to gcc3.1/newlib 1.10.0 RPM revision 5 with
	the gcc3 patch 20020730a and newlib 1.10.0 patch 20020726.

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

	* autotools/automake-rtems.spec.in: Automake-1.6.3.
	* cpukit/.cvsignore: Add mkspec. Remove rtems.spec.

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

	* configure.ac: Use AC_CONFIG_FILES(script, chmod +x script) 
	to generate mk*spec scripts.
	* mkbspspec.in: Use ',' as pattern delimiter in sed expression 
	for $rpm_build_root.
	* mkbinutilsspec.in:  Use ',' as pattern delimiter in sed
	expression for $rpm_build_root.
	* cpukit/mkspec.in: Cosmetical changes.

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

	* ChangeLog: Fix 2002-07-22 ChangeLog entry bogusly referring to
	Joel.
	* cpukit/Makefile.am: New.
	* cpukit/mkspec.in: New.
	* cpukit/rtems-cpukit.spec.in: New.
	* cpukit/.cvsignore: New.
	* configure.ac: Add cpukit. 
	Add RTEMS_TOP to pickup _RTEMS_VERSION (required by cpukit).
	* Makefile.am: Add cpukit. Add ACLOCAL_AMFLAGS (required to pickup
	RTEMS_VERSION).
	* setup.def: Use %{_tmppath} as default for $rpm_build_root.
	* mkbinutilsspec.in: Use ',' as pattern delimiter in sed expression 
	for $rpm_build_root.
	* mkgccnewlibspec.in:  Use ',' as pattern delimiter in sed
	expression for $rpm_build_root.
	* mkgcc3newlibspec.in:  Use ',' as pattern delimiter in sed
	expression for $rpm_build_root.
	* mkgdbspec.in:  Use ',' as pattern delimiter in sed expression for
	$rpm_build_root.

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

	* binutils/Makefile.am: Add or32-rtems-binutils.

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

	* setup.def: Updated newlib patch to get sh and hppa crt0 mods.

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

	* setup.def: Update gcc3 RPMs for new patches.

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

	* autotools/automake-rtems.spec.in: Update to automake-1.6.2.

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

	* mkgdbspec.in, setup.def, gcc3newlib/gccnewlib.add, gdb/gdb.add:
	Updated to gcc 3.1 and gdb 5.2.

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

	* setup.def: Updated to binutils 2.12.1.
	* rtems/Makefile.am: Remove m68k-rtemself references.

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

	* mkgcc3newlibspec.in: Remove SETUP (bogus).
	* gcc3newlib/target-c++.add: New.
	* gcc3newlib/Makefile.am: Add target-c++.add.
	* gcc3newlib/base-g77.add: Adapt to gcc-3.1.
	Reflect having split out c++. Various minor fixes.
	* gcc3newlib/base-gcc.add: Ditto.
	* gcc3newlib/gccnewlib.add: Ditto.
	* gcc3newlib/target-gcc.add: Ditto.

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

	* gcc3newlib/gccnewlib.add: Add gcc_update --touch to fix
	timestamps.

2001-04-16	Joel Sherrill <joel@OARcorp.com>

	* .cvsignore: Added files added by automake 1.6.1.
	* setup.def: New shot at gcc 3.0.4 RPMs.
	* binutils/Makefile.am, gdb/Makefile.am, rtems/Makefile.am:
	Deleted m68k-rtemself.
	* gcc3newlib/gccnewlib.add: Commented out host/target OS check. 
 
2002-04-14	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* autotools/automake-rtems.spec.in: Update to automake-1.6.1.
	Use *.tar.bz2.

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

	* mkbinutilspec.in: Fix PATCH2.

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

	* gcc3newlib/gccnewlib.add: Add -Bgcc/ when collecting multilibs.

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

	* gcc3newlib/gccnewlib.spec.in: Removed from CVS.


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

	* mkbinutilspec.in: Add support for empty patch-version (no patch).
	* mkgcc3newlibspec.in: Ditto.
	* setup: Fix gcc3*_versions handling.
	* setup.def: binutils_patch_version=.
	* binutils/binutils.add: Reflect changes to mkbinutilspec.in,
	Use "%{_target_os}" != "%{_build_os}" to detect cross-building.
	* binutils/target-binutils.add: Comment out c++filt.
	* gcc3newlib/base-gcc.add: Remove duplicate libm.info.
	* gcc3newlib/gccnewlib.add: Reflect changes to mkgcc3newlibspec.in.
	Use "%{_target_os}" != "%{_build_os}" to detect cross-building.
	Comment out gcc-2.95.x hacks.
	Remove *.la from installed files.
	* gcc3newlib/gccnewlib_c_only.spec.in: Remove.

2001-04-02	Joel Sherrill <joel@OARcorp.com>

	* buildall.in: Correct logic for detecting 0 RTEMS RPMS installed.

2001-03-29	Joel Sherrill <joel@OARcorp.com>

	* .cvsignore: Added mkgcc3newlib.

2001-03-29	Joel Sherrill <joel@OARcorp.com>

	* gcc3newlib/.cvsignore: New file.

2001-03-28	Joel Sherrill <joel@OARcorp.com>

	* Per PR64 added support for gcc 3.x RPMs
	* Makefile.am, configure.ac, mkspec, setup, setup.def: Modified.
	* mkgcc3newlibspec.in: New file.
	* gcc3newlib: New subdirectory.
	* base-g77.add, base-gcc.add, base-gcj.add, gccnewlib.add,
	gccnewlib_c_only.spec.in, gccnewlib.spec.in, HISTORY, Makefile.am,
	README, target-g77.add, target-gcc.add, target-gcj.add,
	target-objc.add: New files.

2001-03-28	Joel Sherrill <joel@OARcorp.com>

	* binutils/binutils.add: Commented out patch since binutils 2.12
	does not require one.

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]).
	* autotools/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* Makefile.am: Remove AUTOMAKE_OPTIONS.
	* binutils/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* gccnewlib/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* gdb/Makefile.am: Remove AUTOMAKE_OPTIONS.
	* rtems/Makefile.am: Remove AUTOMAKE_OPTIONS.

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

	* PR151
	* autotools/automake-rtems.spec.in: New.
	* autotools/automake-rtems.spec: Removed.
	* configure.ac: Reflect changes above.

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

	* configure.ac: Be a little more lenient in matching sparc-solaris.

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

	* mkbinutilspec.in, mkgccnewlibspec.in, gccnewlib/base-chill.add,
	gccnewlib/base-g77.add, gccnewlib/base-gcc.add,
	gccnewlib/base-gcj.add, gccnewlib/gccnewlib.add,
	gccnewlib/target-chill.add, gccnewlib/target-g77.add,
	gccnewlib/target-gcc.add, gccnewlib/target-gcj.add,
	gccnewlib/target-objc.add: Added more support for Canadian Cross
	building.

2001-01-30	Joel Sherrill <joel@OARcorp.com>

	* buildall.in: Corrected logic for detecting when no RPMs are installed.

2001-01-24	Joel Sherrill <joel@OARcorp.com>

	* README: Added Canadian Cross instructions.

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

	* configure.ac: Add AC_PREFIX_DEFAULT([/opt/rtems]).
	* mkbinutilsspec.in: Add propagation of @prefix@.
	* binutils/base-binutils.add: 
	Let %post and %unpost apply %{_prefix}.
	Apply %{_prefix} instead of /opt/rtems.
	* binutils/binutils.add: Update copyright notice.
	Add _prefix. 
	Apply %{_prefix} instead of /opt/rtems.
	Remove -a 0 in %setup.
 	Rework hack to SuSE's rpm screwing up %{_target}.
	Replace ARGS with CONFIGURE_ARGS.
	* binutils/target-binutils.add:
	Apply %{_prefix} instead of /opt/rtems.

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

	* binutils/binutils.add: Add initial support for building
	Canadian cross RPMs.  It should work like this:
	    cd rtems/scripts
	    ./configure --build=`../config.guess` --host=i386-cygwin
	    make install
	    rpm --target=i386-cygwin \
	        /usr/src/redhat/SPECS/<target>-binutils-..spec.

	    alien -t /usr/src/redhat/RPMS/....i386.rpm
	.. and voila ... your tarball, with rpm-consistency checks etc. applied.

2001-01-22	Joel Sherrill <joel@OARcorp.com>

	* buildalltar.in: Modified to support Canadian cross builds.
	It was testing using a RedHat 7.2 host to build *-rtems tools
	that run on an i386-cygwin host.

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

	* configure.ac: Fix typo to allow custom RPM_SPECSdirs.

2001-10-16	Joel Sherrill <joel@OARcorp.com>

	* setup.def: Bumped the gdb_patch_version to account for a configuration
	problem on psim where it could not be enabled for powerpc-RTEMS.
	* gdb/Makefile.am: Add i386-RTEMS and powerpc-RTEMS targets.

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

	* mkbinutilsspec.in: Guard sed-pattern against autoconf.
	* mkgccnewlibspec.in: Guard sed-pattern against autoconf, remove
	Target_alias.
	* mkgdbspec.in: Guard sed-pattern against autoconf.
	* mkbspspec.in: Guard sed-pattern against autoconf.
	* configure.ac: Rework check for RPM_SPECSdir.
	* autotools/automake-rtems.spec: Update to 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-09-22	Ralf Corsepius <corsepiu@faw.uni-ulm.de>

	* gdb/Makefile.am, gccnewlib/Makefile.am, binutils/Makefile.am:
	Initially setup CLEANFILES using = instead of += to make
	automake-1.5 happy.

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

	* setup.def, gccnewlib/gccnewlib.add, gccnewlib/target-gcc.add:
	Revert changes because of gcc 2.5.x/3.0 transition and continue
	to support gcc 2.95.x as primary version.

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

	* mkgccnewlibspec.in, 
	Use Target_alias not target_alias to avoid conflicts with new autoconf.
	* setup.def: Changed version numbers in attempt at building gcc 3.0.1.
	Only sparc and arm built for C/C++ OK. :(
	* gccnewlib/base-gcc.add: Modifications to reflect files not in gcc 3.x.
	* gccnewlib/gccnewlib.add: gcc 3.x does not have "everything in the name"
	* target-gcc.add: Modifications to reflect files not in gcc 3.1

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

	* autotools/.cvsignore: New file.

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

	* autotools/Makefile.am, autotools/autoconf-rtems.spec,
	autotools/automake-rtems.spec: New.
	* configure.in, Makefile.am: Add autotools/.

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

	* .cvsignore: Add buildalltar.

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

	* buildalltar.in: New file.
	* configure.in, Makefile.am: Modified to reflect addition of file.

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

	* mkgdbspec.in: Make list of simulators very complete.
	* setup.def: Update versions.

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

	* setup.def, binutils.add, gccnewlib.add: Updated to build
	binutils 2.11.2 (rtems patch 20010622), gcc 2.95.3 (rtems
	patch a20010622), and newlib 1.9.0 (rtems patch 10020622).

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

	* configure.in: Remove AC_EXEEXT, treat .exe manually.
	* gccnewlib/base-gcc.add: Remove cpp.
	* gccnewlib/gccnewlib.add: mv cpp $target_alias-cpp, update
	copyright.

2001-04-16	Joel Sherrill <joel@OARcorp.com>

	* setup.def: Modified the binutils version to 2.11 and 
	RPM revision 3 to reflect experimentation with new binutils release.

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

	* binutils/Makefile.am: Added a29k-rtems.
	* binutils/binutils.add: Switch to .bz2 extension to reflect 
	real way code is compressed on distribution sites now.

2001-03-19	Joel Sherrill <joel@OARcorp.com>

	* setup.def: Updated version numbers and patches for binutils
	and gdb.  binutils was to get correct patch in field.  gdb
	was to add mipstx39-rtems configurery support.

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

	* gdb/Makefile.am, mkgdbspec.in: Added mipstx39-rtems
	configuration to gdb since this includes the JMR3904 simulator.

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

	* setup.def, binutils/HISTORY, gccnewlib/HISTORY: Updated 
	binutils HISTORY to reflect new revision.  Updated gcc to fix
	i960 C++ problem.  Updated newlib to move to newlib 1.9.0.

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

	* gccnewlib/gccnewlib.add: Fix typo in URL.

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

	* configure.in: Adapt m4-quoting to autoconf-2.49b, use $host
	instead of $target to setup RPM_CPU, move chmod 755 buildall to 
	AC_OUTPUT's extra-cmds.
	
2000-10-30	Joel Sherrill <joel@OARcorp.com>

	* buildall.in, mkgdbspec.in, setup.def, binutils/Makefile.am,
	gccnewlib/HISTORY, gccnewlib/Makefile.am, gdb/Makefile.am:
	Added mips-rtems, updated to include new patches and
	gcc 2.95.2/newlib 1.8.2 revision 11 RPM.

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

	* configure.in: Remove trailing '/'s from setting up RPM_SPECdir.

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

	* setup.def: Updating version numbers for gcc/newlib RPM release 10.

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

	* setup.def: Updated gcc and newlib patches and bumped RPM revision.
	Patches primarily add or16/or32 basic support to newlib and 
	i386 multilib improvements to gcc from Ralf Corsepius.

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

	* ChangeLog: New file.