summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 3c994fe7bb3feb93cf9a0133eeacb2b383646b82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
Sun Jan 30 17:42:00 2011 Adam M. Dutko (dutko.adam@gmail.com)
        * README: Removed notice of needing maintainer.
        * AUTHORS: Added ChangeLog information. 
        * GNUmakefile.in: Change GPL to version 3 and add year.
        * charspace/GNUmakefile: Change GPL to version 3 and add year.
        * charspace/char.c: Change GPL to version 3 and add year.
        * charspace/char.h: Change GPL to version 3 and add year.
        * charspace/cmi.h: Change GPL to version 3 and add year.
        * charspace/cmi.y: Change GPL to version 3 and add year.
        * charspace/input-cmi.c: Change GPL to version 3 and add year.
        * charspace/input-cmi.h: Change GPL to version 3 and add year.
        * charspace/kern.c: Change GPL to version 3 and add year.
        * charspace/kern.h: Change GPL to version 3 and add year.
        * charspace/main.c: Change GPL to version 3 and add year.
        * charspace/main.h: Change GPL to version 3 and add year.
        * charspace/old-output.c: Change GPL to version 3 and add year.
        * charspace/output.c: Change GPL to version 3 and add year.
        * charspace/output.h: Change GPL to version 3 and add year.
        * charspace/realstrval.h: Change GPL to version 3 and add year.
        * charspace/symtab.c: Change GPL to version 3 and add year.
        * charspace/symtab.h: Change GPL to version 3 and add year.
        * charspace/version.c: Add GPL version 3 and add year.
        * data/defs.make: Change GPL to version 3 and add year.
        * data/defsprog.make: Change GPL to version 3 and add year.
        * doc/bpltobzr.texi: Add year to copyright.
        * doc/bugs.texi: Add year to copyright.
        * doc/bzredit.texi: Add year to copyright.
        * doc/bzrto.texi: Add year to copyright.
        * doc/charspace.texi: Add year to copyright.
        * doc/enhance.texi: Add year to copyright.
        * doc/filefmts.texi: Add year to copyright.
        * doc/fontcvt.texi: Add year to copyright.
        * doc/gsrenderf.texi: Add year to copyright.
        * doc/imageto.texi: Add year to copyright.
        * doc/imgrotate.texi: Add year to copyright.
        * doc/index.texi: Add year to copyright.
        * doc/install.texi: Add year to copyright.
        * doc/intro.texi: Add year to copyright.
        * doc/limn.texi: Add year to copyright.
        * doc/Makefile: Add GPL version 3 and add year.
        * doc/Makefile.in: Add GPL version 3 and add year. 
        * doc/overview.texi: Add year to copyright.
        * doc/xbfe.texi: Add year to copyright.
        * fontconvert/GNUmakefile: Change GPL to version 3 and add year.
        * fontconvert/filter.c: Change GPL to version 3 and add year.
        * fontconvert/filter.h: Change GPL to version 3 and add year.
        * fontconvert/main.c: Change GPL to version 3 and add year.
        * fontconvert/main.h: Change GPL to version 3 and add year.
        * fontconvert/output-epsf.c: Change GPL to version 3 and add year.
        * fontconvert/output-gf.c: Change GPL to version 3 and add year.
        * fontconvert/output-gf.h: Change GPL to version 3 and add year.
        * fontconvert/output-tfm.c: Change GPL to version 3 and add year.
        * fontconvert/output-tfm.h: Change GPL to version 3 and add year.
        * fontconvert/random.c: Change GPL to version 3 and add year.
        * fontconvert/random.h: Change GPL to version 3 and add year.
        * fontconvert/version.c: Add GPL version 3 and add year.
        * gf/GNUmakefile: Change GPL to version 3 and add year.
        * gf/gf_input.c: Change GPL to version 3 and add year.        
        * gf/gf_opcodes.h: Change GPL to version 3 and add year.        
        * gf/gf_output.c: Change GPL to version 3 and add year.        
        * imageto/GNUmakefile: Change GPL to version 3 and add year.
        * imageto/bitmap2.c: Change GPL to version 3 and add year.
        * imageto/bitmap2.h: Change GPL to version 3 and add year.
        * imageto/extract.c: Change GPL to version 3 and add year.
        * imageto/extract.h: Change GPL to version 3 and add year.
        * imageto/ifi.h: Change GPL to version 3 and add year.
        * imageto/ifi.c: Add GPL version 3 and add year.
        * imageto/image-char.c: Change GPL to version 3 and add year.
        * imageto/image-char.h: Change GPL to version 3 and add year.
        * imageto/image-header.h: Change GPL to version 3 and add year.
        * imageto/input-img.c: Change GPL to version 3 and add year.
        * imageto/input-img.h: Change GPL to version 3 and add year.
        * imageto/input-pbm.c: Fix malformed license and update.
        * imageto/input-pbm.h: Change GPL to version 3 and add year.
        * imageto/main.c: Change GPL to version 3 and add year.
        * imageto/main.h: Change GPL to version 3 and add year.
        * imageto/out-chars.c: Change GPL to version 3 and add year.
        * imageto/out-chars.h: Change GPL to version 3 and add year.
        * imageto/out-epsf.c: Change GPL to version 3 and add year.
        * imageto/out-epsf.h: Change GPL to version 3 and add year.
        * imageto/out-strips.c: Change GPL to version 3 and add year.
        * imageto/out-strips.h: Change GPL to version 3 and add year.
        * imageto/version.c: Add GPL version 3 and add year.
        * include/bb-list.h: Change GPL to version 3 and add year.
        * include/bb-outline.h: Change GPL to version 3 and add year.
        * include/bitmap.h: Change GPL to version 3 and add year.
        * include/Bitmap.h: Change GPL to version 3 and add year.
        * include/bounding-box.h: Change GPL to version 3 and add year.
        * include/bzr.h: Change GPL to version 3 and add year.
        * include/bzr.h: Change GPL to version 3 and add year.
        * include/c-ctype.h: Change GPL to version 3 and add year.
        * include/c-dir.h: Change GPL to version 3 and add year.
        * include/c-errno.h: Change GPL to version 3 and add year.
        * include/c-fopen.h: Change GPL to version 3 and add year.
        * include/charspec.h: Change GPL to version 3 and add year.
        * include/c-limits.h: Change GPL to version 3 and add year.
        * include/concatn.h: Change GPL to version 3 and add year.
        * include/config.h: Change GPL to version 3 and add year.
        * include/c-pathch.h: Change GPL to version 3 and add year.
        * include/c-pathmx.h: Change GPL to version 3 and add year.
        * include/c-proto.h: Change GPL to version 3 and add year.
        * include/c-stat.h: Change GPL to version 3 and add year.
        * include/c-std.h: Change GPL to version 3 and add year.
        * include/c-time.h: Change GPL to version 3 and add year.
        * include/c-unistd.h: Change GPL to version 3 and add year.
        * include/c-vararg.h: Change GPL to version 3 and add year.
        * include/dirio.h: Change GPL to version 3 and add year.
        * include/edge.h: Change GPL to version 3 and add year.
        * include/encoding.h: Change GPL to version 3 and add year.
        * include/file-input.h: Change GPL to version 3 and add year.
        * include/filename.h: Change GPL to version 3 and add year.
        * include/file-output.h: Change GPL to version 3 and add year.
        * include/fix-num.h: Change GPL to version 3 and add year.
        * include/font.h: Change GPL to version 3 and add year.
        * include/fontmap.h: Change GPL to version 3 and add year.
        * include/gf.h: Change GPL to version 3 and add year.
        * include/global.h: Change GPL to version 3 and add year.
        * include/hash.h: Change GPL to version 3 and add year.
        * include/hexify.h: Change GPL to version 3 and add year.
        * include/identity.h: Change GPL to version 3 and add year.
        * include/Item.h: Change GPL to version 3 and add year.
        * include/kpathsea-config.h: Change GPL to version 3 and add year.
        * include/libfile.h: Change GPL to version 3 and add year.
        * include/lib.h: Change GPL to version 3 and add year.
        * include/line.h: Change GPL to version 3 and add year.
        * include/list.h: Change GPL to version 3 and add year.
        * include/logreport.h: Change GPL to version 3 and add year.
        * include/moretypes.h: Change GPL to version 3 and add year.
        * include/paths.h: Change GPL to version 3 and add year.
        * include/pathsrch.h: Change GPL to version 3 and add year.
        * include/pbm.h: Add GPL version 3 and add year.
        * include/pbmplus.h: Add GPL version 3 and add year.
        * include/pk.h: Change GPL to version 3 and add year.
        * include/progname.h: Change GPL to version 3 and add year.
        * include/rand.h: Change GPL to version 3 and add year.
        * include/report.h: Change GPL to version 3 and add year.
        * include/scaled-num.h: Change GPL to version 3 and add year.
        * include/spline.h: Change GPL to version 3 and add year.
        * include/statistics.h: Change GPL to version 3 and add year.
        * include/str-lcase.h: Change GPL to version 3 and add year.
        * include/str-list.h: Change GPL to version 3 and add year.
        * include/systypes.h: Change GPL to version 3 and add year.
        * include/tex-file.h: Change GPL to version 3 and add year.
        * include/tfm.h: Change GPL to version 3 and add year.
        * include/types.h: Change GPL to version 3 and add year.
        * include/varstring.h: Change GPL to version 3 and add year.
        * include/vector.h: Change GPL to version 3 and add year.
        * include/xmessage.h: Change GPL to version 3 and add year.
        * include/xt-common.h: Change GPL to version 3 and add year.
        * lib/GNUmakefile: Change GPL to version 3 and add year.
        * lib/atou.c: Change GPL to version 3 and add year.
        * lib/bb-list.c: Change GPL to version 3 and add year.
        * lib/bb-outline.c: Change GPL to version 3 and add year.
        * lib/bitmap.c: Change GPL to version 3 and add year.
        * lib/bounding-box.c: Change GPL to version 3 and add year.
        * lib/charcode.c: Change GPL to version 3 and add year.
        * lib/charspec.c: Change GPL to version 3 and add year.
        * lib/cmdline.c: Change GPL to version 3 and add year.
        * lib/concat3.c: Change GPL to version 3 and add year.
        * lib/concat4.c: Change GPL to version 3 and add year.
        * lib/concat5.c: Change GPL to version 3 and add year.
        * lib/concat.c: Change GPL to version 3 and add year.
        * lib/concatn.c: Change GPL to version 3 and add year.
        * lib/dir.c: Change GPL to version 3 and add year.
        * lib/dlsym.c: Change GPL to version 3 and add year.
        * lib/edge.c: Change GPL to version 3 and add year.
        * lib/encoding.c: Change GPL to version 3 and add year.
        * lib/extend-fname.c: Change GPL to version 3 and add year.
        * lib/file-input.c: Change GPL to version 3 and add year.
        * lib/filename.c: Change GPL to version 3 and add year.
        * lib/file-output.c: Change GPL to version 3 and add year.
        * lib/find-suffix.c: Change GPL to version 3 and add year.
        * lib/fix-num.c: Change GPL to version 3 and add year.
        * lib/float-ok.c: Change GPL to version 3 and add year.
        * lib/font.c: Change GPL to version 3 and add year.
        * lib/fontmap.c: Change GPL to version 3 and add year.
        * lib/hash.c: Change GPL to version 3 and add year.
        * lib/hexify.c: Change GPL to version 3 and add year.
        * lib/identity.c: Change GPL to version 3 and add year.
        * lib/integer-ok.c: Change GPL to version 3 and add year.
        * lib/libfile.c: Change GPL to version 3 and add year.
        * lib/line.c: Change GPL to version 3 and add year.
        * lib/list.c: Change GPL to version 3 and add year.
        * lib/logreport.c: Change GPL to version 3 and add year.
        * lib/make-prefix.c: Change GPL to version 3 and add year.
        * lib/make-suffix.c: Change GPL to version 3 and add year.
        * lib/math.c: Change GPL to version 3 and add year.
        * lib/now.c: Change GPL to version 3 and add year.
        * lib/numtoa.c: Change GPL to version 3 and add year.
        * lib/pathsrch.c: Change GPL to version 3 and add year.
        * lib/progname.c: Change GPL to version 3 and add year.
        * lib/randc.c: Change GPL to version 3 and add year.
        * lib/report.c: Change GPL to version 3 and add year.
        * lib/rm-suffix.c: Change GPL to version 3 and add year.
        * lib/safe-free.c: Change GPL to version 3 and add year.
        * lib/scaled-num.c: Change GPL to version 3 and add year.
        * lib/spline.c: Change GPL to version 3 and add year.
        * lib/statistics.c: Change GPL to version 3 and add year.
        * lib/str-lcase.c: Change GPL to version 3 and add year.
        * lib/str-list.c: Change GPL to version 3 and add year.
        * lib/strstr.c: Change GPL to version 3 and add year.
        * lib/str-to-bit.c: Change GPL to version 3 and add year.
        * lib/substring.c: Change GPL to version 3 and add year.
        * lib/varstring.c: Change GPL to version 3 and add year.
        * lib/vector.c: Change GPL to version 3 and add year.
        * lib/xcalloc.c: Change GPL to version 3 and add year.
        * lib/xchdir.c: Change GPL to version 3 and add year.
        * lib/xfopen.c: Change GPL to version 3 and add year.
        * lib/xfseek.c: Change GPL to version 3 and add year.
        * lib/xftell.c: Change GPL to version 3 and add year.
        * lib/xgetcwd.c: Change GPL to version 3 and add year.
        * lib/xmalloc.c: Change GPL to version 3 and add year.
        * lib/xmessage.c: Change GPL to version 3 and add year.
        * lib/xopendir.c: Change GPL to version 3 and add year.
        * lib/xrealloc.c: Change GPL to version 3 and add year.
        * lib/xrename.c: Change GPL to version 3 and add year.
        * lib/xstrdup.c: Change GPL to version 3 and add year.
        * pbm/GNUmakefile: Change GPL to version 3 and add year.
        * pbm/libpbm1.c: Adjust license to GPL 3 and add year.
        * pbm/libpbm2.c: Adjust license to GPL 3 and add year.
        * pbm/libpbm4.c: Adjust license to GPL 3 and add year.
        * pbm/libpbm.h: Add GPL 3 and add year.
        * pbm/pbmascii.c: Add GPL 3 and add year.
        * pk/GNUmakefile: Change GPL to version 3 and add year.
        * pk/pk_input.c: Change GPL to version 3 and add year.
        * pk/pk_opcodes.h: Change GPL to version 3 and add year.
        * tfm/GNUmakefile: Change GPL to version 3 and add year.
        * tfm/fontdimen.c: Change GPL to version 3 and add year.
        * tfm/tfm_char.c: Change GPL to version 3 and add year.
        * tfm/tfm_fontdim.c: Change GPL to version 3 and add year.
        * tfm/tfm_header.c: Change GPL to version 3 and add year.
        * tfm/tfm_input.c: Change GPL to version 3 and add year.
        * tfm/tfm_kern.c: Change GPL to version 3 and add year.
        * tfm/tfm_ligature.c: Change GPL to version 3 and add year.
        * tfm/tfm_output.c: Change GPL to version 3 and add year.

Tue Jan 18 18:30:00 2011 Adam M. Dutko (dutko.adam@gmail.com)
        * charspace/ChangeLog: Added note about ChangeLog.old
        * data/ChangeLog.old: Added data ChangeLog to root ChangeLog.
        * data/ChangeLog: Added deprecation notice of ChangeLog.
        * doc/ChangeLog.old: Added doc ChangeLog to root ChangeLog.
        * doc/ChangeLog: Added deprecation notice of ChangeLog.

Thu Jan 13 21:30:00 2011 Adam M. Dutko (dutko.adam@gmail.com)

        * ChangeLog: Corrected day on previous commit.
        * ChangeLog: Created unified changelog with root and charspace logs.

Thu Jan 13 19:51:00 2011  Adam M. Dutko (dutko.adam@gmail.com)

        * BUILD: Adding build notes for GCC 4.5.2.

Thu Jun 24 xx:xx:xx 2004  Karl Berry <karl@gnu.org>
    
        * doc/*.texi: remove node pointers.
        * doc/freedom.texi: old info, remove (sadly).
        * doc/fontu.texi: remove @include of freedom.

Mon Apr  8 08:32:57 1996  Kathy Hargreaves  <letters@cs.umb.edu>

        * doc/overview.texi: added direction to CCC arrow.

Sat Apr  6 07:42:05 1996  Kathy Hargreaves  <letters@cs.umb.edu>

        * data/itcdingbat.enc: no longer have to accommodate Adobe symbols
          because they donated the font, so list the non-Adobe symbols as
          they occur in the sample book.

Sat Mar 30 07:09:01 1996  Kathy Hargreaves  <letters@cs.umb.edu>

        * doc/overview.texi: added TFM output line from fontconvert to
          imageto.  Added directions to arrows for GF<->fontconvert and
          CMI->fontconvert. 

Fri Dec 29 07:21:58 1995  Kathy Hargreaves  <kathy@cs.umb.edu>

        * data/defs.make (CPPFLAGS): -I$(srcdir)/../include, not
          -I../$(srcdir)/include.

Sat Dec  9 08:05:30 1995  Kathy Hargreaves  <karl@cs.umb.edu>

        * doc/fontcvt.texi (Character manipulation options): filtering
          eliminates small features, such as serifs (not features).

Thu Nov 23 09:06:06 1995  Kathy Hargreaves  <karl@cs.umb.edu>

        * charspace/main.c: replaced find_tfm_filename with kpse_find_tfm.

Mon Oct 16 09:24:40 1995  Kathy Hargreaves  <karl@cs.umb.edu>

        * data/itcdingbat.enc: added this.
        * data/encoding.map: added itcdingbat -> ITC Zapf Dingbats.

Thu Oct 12 10:42:31 1995  Karl Berry  <karl@cs.umb.edu>

        * data/defs.make (kpathsea_srcdir): Define this for the sake of the
          dependencies.
          (M.depend): Use -M and remove the /usr/include files.

Sun Oct  8 07:53:33 1995  Karl Berry  <karl@cs.umb.edu>

        * data/defs.make (kpathsea): Prepend lib to the name.

Fri May 13 15:18:27 1994  Karl Berry  (karl@cs.umb.edu)

        * configure.in: Include kpathsea/common.ac.

Sat Aug  7 12:01:46 1993  Karl Berry  (karl@cs.umb.edu)

        * data/defs.make (depend & M.depend): shorten.

Sat Aug  7 11:53:23 1993  Karl Berry  (karl@cs.umb.edu)

        * charspace/cmi.y, *.h: c-ctype.h and types.h now in kpathsea.

Sat Jul 31 11:38:21 1993  Karl Berry  (karl@cs.umb.edu)

	* configure.in: Remove AC_PREFIX.

Tue Jul 27 09:03:52 1993  Karl Berry  (karl@cs.umb.edu)

        * data/defsprog.make (program): Depend on $(kpathsea).
        * data/defs.make: Add definitions for kpathsea.

Wed Jun  2 08:09:17 1993  Karl Berry  (karl@cs.umb.edu)

	* configure.in: Call AC_PROG_CPP explicitly.  Don't bother with
	AC_GCC_TRADITIONAL.

Sun May 23 09:08:22 1993  Karl Berry  (karl@cs.umb.edu)

        * data/common.cmi (kern fk): Make relative to designsize.
          (kern AV): Added.
          (extraspace): Make half of shrink.
        * data/gnulatin.enc (exclam, question): Add ligatures with ` leading to
          ...down.

Sat May 22 11:22:57 1993  Karl Berry  (karl@cs.umb.edu)

	* GNUmakefile.in (dist): Run gzip -9.

Thu May 20 16:59:38 1993  Karl Berry  (karl@cs.umb.edu)

	* GNUmakefile.in (default_tfm_path): Put . first.

Tue May 18 14:02:05 1993  Karl Berry  (karl@cs.umb.edu)

	* Makefile.in (install-*): mkdirchain on install dirs, and put
	mkdirchain in the dist.

Sun May 16 15:46:54 1993  Karl Berry  (karl@cs.umb.edu)

        * doc/fontu.texi: Change title to `GNU font utilities'.

Thu Apr 22 15:18:14 1993  Karl Berry  (karl@cs.umb.edu)

        * data/defs.make (%.o): Put $CFLAGS last.

Sun Apr 11 14:59:50 1993  Karl Berry  (karl@cs.umb.edu)

	* GNUmakefile.in (dist): Copy info files to the local info directory.

Sat Apr 10 14:58:43 1993  Karl Berry  (karl@cs.umb.edu)

	* configure.in: Do AC_XENIR_DIR after AC_DIR_HEADER.

Thu Mar 25 16:01:51 1993  Karl Berry  (karl@cs.umb.edu)

	* configure.in (AC_ISC_WLIBS): Remove.
        * aclocal.m4: New version, see web2c ChangeLog.

Mon Mar 22 06:26:35 1993  Karl Berry  (karl@cs.umb.edu)

        * data/defsprog.make (dist): Make the bison output here.
        * data/defs.make (dist): Instead of here.

Tue Mar 16 07:32:06 1993  Karl Berry  (karl@cs.umb.edu)

        * data/gnulatin.enc (ellipses): Correct to ellipsis.

Tue Feb 23 16:52:13 1993  Karl Berry  (karl@cs.umb.edu)

	* GNUmakefile.in (dist): Copy info files to my local info directory.

Wed Feb 17 06:31:03 1993  Karl Berry  (karl@cs.umb.edu)

        * doc/Makefile.in (INSTALL): Use tr instead of grep to remove the
          Info control characters.

Sun Feb  7 14:22:45 1993  Karl Berry  (karl@cs.umb.edu)

        * doc/Makefile.in (install): Give filename as second arg.
          (info, dvi): New (synonym) targets.

Sat Jan  9 15:22:51 1993  Karl Berry  (karl@cs.umb.edu)

	* GNUmakefile.in (configure, config.status): cd $(srcdir) first.

Fri Jan  1 14:30:16 1993  Karl Berry  (karl@cs.umb.edu)

        * data/defs.make (realclean): Don't remove M.depend.  It causes too
          much confusion when make tries to remake it.

Fri Jan  1 13:57:15 1993  Karl Berry  (karl@cs.umb.edu)

	* configure.in: Changes for new Autoconf.

Sun Dec 13 16:39:23 1992  Karl Berry  (karl@cs.umb.edu)

	* GNUmakefile.in (default_tfm_path): Use $(texdatadir).

Sat Dec  5 17:15:31 1992  Karl Berry  (karl@cs.umb.edu)

        * doc/bpltobzr.texi: Comment syntax is now `; ... \n', a la Lisp.

Fri Dec 11 14:59:42 1992  Karl Berry  (karl@cs.umb.edu)

        * charspace/symtab.c (symval_as_string): `dtoa' is now `xdtoa'.
        * charspace/cmi.y: Change ctype references to use uppercase macros.

Thu Dec 10 10:34:30 1992  Karl Berry  (karl@cs.umb.edu)

	* GNUmakefile.in (GNUmakefile): Add $(srcdir) to dependency, and
	  use $(SHELL) instead of sh.
          (config.status): Use $(SHELL).

Thu Dec  3 15:40:40 1992  Karl Berry  (karl@cs.umb.edu)

        * charspace/main.c: Don't bother to include getopt.h, cmdline.h already           does.

Sun Nov 29 17:17:46 1992  Karl Berry  (karl@cs.umb.edu)

	* GNUmakefile.in (emacslispdir): Doc fix.

Sat Oct 31 08:18:24 1992  Karl Berry  (karl@cs.umb.edu)

        * data/texm{ext,sym,ital}.enc: New files.

Thu Oct 29 06:39:04 1992  Karl Berry  (karl@cs.umb.edu)

        * doc/Makefile.in (distfiles): Add ChangeLog.

Wed Oct 28 15:10:12 1992  Karl Berry  (karl@claude.cs.umb.edu)

        * data: Version 0.6.
        * data/defsprog.make (install): Make second arg a file, not a dir.

Wed Oct 28 15:09:29 1992  Karl Berry  (karl@claude.cs.umb.edu)

	* Version 0.6.
	* GNUmakefile.in (install): Install data files with file as second
	  arg, not directory.

Tue Oct 27 13:02:40 1992  Karl Berry  (karl@cs.umb.edu)

        * data/defs.make (dist): Make .c files from .y source.

Tue Oct 27 13:02:33 1992  Karl Berry  (karl@cs.umb.edu)

        * doc: Version 0.6.
        * doc/Makefile.in (dist): Need Makefile temporarily.

Tue Oct 27 13:01:50 1992  Karl Berry  (karl@cs.umb.edu)

        * charspace: Version 0.6.

Sun Oct 25 15:30:46 1992  Karl Berry  (karl@cs.umb.edu)

        * doc/Makefile.in (distclean): Depend on clean, and remove Makefile.
        * doc/Makefile.in (.NOEXPORT): Add this.
        * doc/Makefile.in (distfiles): Do Makefile.in, not Makefile.

Sun Oct 25 15:29:19 1992  Karl Berry  (karl@cs.umb.edu)

	* GNUmakefile.in (realclean): Depend on distclean.
	* GNUmakefile.in (installargs): Passed texinputdir as mfinputdir.
	* GNUmakefile.in (install): Correct to `emacs_datadir' in the mkdir.

Sat Oct 24 05:18:03 1992  Karl Berry  (karl@cs.umb.edu)

        * doc/imageto.texi: Default encoding is none now, not ASCII.
        * doc/gsrenderf.texi: Likewise.

Fri Oct 23 14:16:19 1992  Karl Berry  (karl@cs.umb.edu)

        * doc/fontcvt.texi: The -space option is gone.
        * doc/gsrenderf.texi: This doesn't use Fontconvert anymore.

Tue Oct 20 14:49:21 1992  Karl Berry  (karl@cs.umb.edu)

        * doc/bzrto.texi: Document -ps-font-info option.

Mon Oct 19 08:05:34 1992  Karl Berry  (karl@cs.umb.edu)

        * data/ascii.enc: Remove trailing .notdef's.
        * data/encoding.map (mflogo): New entry.
        * data/mflogo.enc: New file.

Thu Oct 15 08:35:21 1992  Karl Berry  (karl@cs.umb.edu)

	* configure: Ran Autoconf 1.2.

Mon Oct  5 10:24:15 1992  Karl Berry  (karl@cs.umb.edu)

	* configure.in: Generate doc/Makefile. (arif@stat.fsu.edu)
	* GNUmakefile.in (install): Install common.cmi. (ab@meiko.co.uk)

Mon Oct  5 09:19:32 1992  Karl Berry  (karl@cs.umb.edu)

        * doc/Makefile.in: Renamed from Makefile (so $(prefix) gets configured.)
        * doc/bugs.texi: Add more info about criteria and philosophy,
          restructure into sections.
        * doc/imageto.texi: Rewrite major portions.

Sun Oct  4 11:31:42 1992  Karl Berry  (karl@cs.umb.edu)

        * data/ggmr.{ifi,1200cmi}: Make links here so we distribute these files
          (even though we can't use the image they go with for legal reasons).

Sun Oct  4 11:22:45 1992  Karl Berry  (karl@cs.umb.edu)

	* GNUmakefile.in (examplefiles): Remove; just make links.
          (dist): Don't copy them.

Sun Oct  4 11:18:43 1992  Karl Berry  (karl@cs.umb.edu)

        * doc/{imageto,overview}.texi: Remove doc on -clean-threshold.

Mon Sep 21 11:03:32 1992  Karl Berry  (karl@cs.umb.edu)

        * doc/imageto.texi: document -ifi-file.

Sun Sep 20 12:53:29 1992  Karl Berry  (karl@cs.umb.edu)

        * GNUmakefile.in (config.status): use sh to run configure --no-create.
        * GNUmakefile.in (realclean): OK, don't remove configure.

Tue Sep 15 08:40:11 1992  Karl Berry  (karl@hayley)

        * data/defs.make (RANLIB): define as `@true', so it's silent.

Mon Sep 14 17:50:54 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (realclean): separate from distclean.
          (distclean): remove GNUmakefile.
          (config.status): new target.
          (GNUmakefile): depend on config.status.

Sun Sep 13 10:33:41 1992  Karl Berry  (karl@hayley)

        * doc/fontu.texi: the FSF should approve permissions, not me.

Sat Sep 12 16:14:39 1992  Karl Berry  (karl@hayley)

        * doc/Makefile (dist): use $(MAKE).

Sat Sep 12 14:53:31 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (dist): replace remaining occurrences of
          `fontutils-$(version) with `$(top_distdir)'.

Thu Sep 10 08:57:02 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (dist): changed where the COPYING* files are kept.
        * GNUmakefile.in (xincludedir, xlibdir): say that these are
          options, not just directories.
        * GNUmakefile.in (realclean): remove configure.

Tue Sep  8 17:41:02 1992  Karl Berry  (karl@hayley)

        * doc/Makefile (clean): remove dvi files etc. here.
          (distclean): remove empty sorted index files here.
          (dist): not here.

Tue Sep  8 16:42:04 1992  Karl Berry  (karl@hayley)

        * configure.in: test for more Unix variants.

Fri Sep  4 08:42:42 1992  Karl Berry  (karl@hayley)

        * data/defs.make (extraclean): new target.

Fri Sep  4 08:41:16 1992  Karl Berry  (karl@hayley)

        * doc/Makefile (extraclean): new target.

Fri Sep  4 08:39:15 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (extraclean): new target.

Thu Sep  3 09:30:07 1992  Karl Berry  (karl@hayley)

        * doc: Version 0.5.

Thu Sep  3 09:29:53 1992  Karl Berry  (karl@hayley)

        * data: Version 0.5.

Thu Sep  3 09:29:46 1992  Karl Berry  (karl@hayley)

        * charspace: Version 0.5.

Thu Sep  3 08:54:12 1992  Karl Berry  (karl@hayley)

        * Version 0.5.
        * GNUmakefile.in (distargs): pass $(version) down.

Wed Sep  2 16:03:00 1992  Karl Berry  (karl@hayley)

        * data/defsprog.make (TAGS): make unconditional, instead of depending
          on source files.
        * data/common.cmi: spelling fixes.

Mon Aug 31 09:38:01 1992  Karl Berry  (karl@hayley)

        * data/defs.make (depend, objects): output the Bison dependencies first.

Sat Aug 29 16:11:47 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (tex{data,input}dir): new variables.
          (installargs): pass texinputdir.

Thu Aug 27 08:56:47 1992  Karl Berry  (karl@hayley)

        * configure: regenerated from Autoconf 1.1.

Sun Aug 23 13:36:19 1992  Karl Berry  (karl@hayley)

        * charspace/main.c: (USAGE): put a newline before GETOPT_USAGE.

Wed Aug 19 07:55:50 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (install): do make install in `doc', and install
          the .enc and encoding.map files from `data'.

Tue Aug 18 15:57:53 1992  Karl Berry  (karl@hayley)

        * data/defsprog.make (dist): don't look for *.PS.

Tue Aug 18 15:50:55 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (completedirs): remove `doc' (yay!).

Mon Aug 17 08:35:30 1992  Karl Berry  (karl@hayley)

        * charspace/input-cmi.h: doc fix.

Sun Aug 16 21:38:23 1992  Karl Berry  (karl@hayley)

        * charspace/cmi.y (NOT_A_TOKEN): parenthesize the definition, for safety.

Sat Aug 15 13:32:38 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (mfdatadir, mfinputdir): new variables.
          (installargs): pass mfinputdir.

Mon Aug  3 16:00:58 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (emacs_datadir, emacslispdir): new variables.
          (install): mkdir them.
          (installargs): pass emacslispdir down.

Fri Jul 31 17:02:22 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (dist): include our aclocal.m4.
        * GNUmakefile.in (LIBS): include $(extralibs) for the user to
          define.

Tue Jul 28 14:49:36 1992  Karl Berry  (karl@hayley)

        * data/encoding.map (dvips): maps to afm2tfm's `TeX text + adobestdenc..          .'.

Mon Jul 27 17:11:26 1992  Karl Berry  (karl@hayley)

        * data/defs.make (ourlibs, dlsym): use `../$(srcdir)'.

Wed Jul 22 08:42:46 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (topfiles): add `NEWS'.
        * NEWS: new file.
        * configure.in: changes for Autoconf 1.0.

Sun Jul 19 08:41:17 1992  Karl Berry  (karl@hayley)

        * data/defs.make (CPPFLAGS): remove the `..'.

Sun Jul 19 08:32:13 1992  Karl Berry  (karl@hayley)

        * charspace/char.c (update_width): char-width now gives the lsb as a
          percentage, not a hard number.
        * charspace/cmi.y: doc fix.

Thu Jul 16 17:24:38 1992  Karl Berry  (karl@claude.cs.umb.edu)

        * data/defs.make (depend): use `CPPFLAGS', `INCLUDES'.

Tue Jul 14 16:41:54 1992  Karl Berry  (karl@hayley)

        * charspace/output.c: doc fix.
        * charspace/cmi.y (char_width): new rule for the char-width cmd.
        * charspace/realstrval.h (symval_tag_type): new value 
          `symval_char_width'.
        * charspace/char.c (update_via_name): handle this case.
          (update_width, update_metrics): new routines.
          (update_sidebearings): call update_metrics.

Mon Jul 13 17:06:13 1992  Karl Berry  (karl@hayley)

        * data/defs.make (CCFLAGS): forgot to change back to `CFLAGS'.

Tue Jul  7 16:43:08 1992  Karl Berry  (karl@hayley)

        * charspace/output.c (write_tfm): use same algorithm for TFM output 
          names as fontconvert/output-tfm.c

Sun Jul  5 10:48:06 1992  Karl Berry  (karl@hayley)

        * data/defsprog.make (TAGS): use Bison sources to make the TAGS file,

Sun Jul  5 10:41:10 1992  Karl Berry  (karl@hayley)

        * charspace/cmi.y (yylex): allow `+' to start a numeric constant.

Fri Jul  3 17:46:36 1992  Karl Berry  (karl@hayley)

        * charspace/main.c (read_encoding_info): default the encoding scheme, 
          if the user hasn't specified one.

Thu Jul  2 16:39:58 1992  Karl Berry  (karl@hayley)

        * data/defs.make (CPPFLAGS): new variable.
          (.c.o): use it.

Thu Jul  2 15:26:14 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (makeargs): pass srcdir and CFLAGS.
          (CCFLAGS): remove.
        * Run Autoconf 0.119.

Mon Jun 29 09:08:43 1992  Karl Berry  (karl@hayley)

        * data/defs.make (%.o): new pattern rule to compile C source.
          (CCFLAGS): rename from CFLAGS.

Mon Jun 29 08:58:37 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (paths.h): delete it before creating it.
          Also, new target `GNUmakefile'.
          (fu_datadir): new variable for the subdirectory in $(datadir)
          which we create.
          (install): mkdir all the directories we install into.
          (CFLAGS): change to CCFLAGS, so the user can set CFLAGS on the
          command line.

Sat Jun 27 11:04:17 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (paths.h): depend on GNUmakefile.in and GNUmakefile.

Sun Jun 21 15:37:46 1992  Karl Berry  (karl@io)

        * data/defs.make (X_libraries): change -lXaw back to libXaw.a; still
          loses with dynamic linking because of our FormWidget etc.

Sun Jun 21 12:43:32 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (app_defaults): change default and describe better.

Sun Jun 14 07:19:12 1992  Karl Berry  (karl@hayley)

        * charspace/output.c (make_gf_char): copied TFM width from `gf_char' 
          instead of 'bitmap_char'. Argh.
        * charspace/output.c (write_tfm): check chars between 'starting_char'
          and 'ending_char', *inclusive*.
        * charspace/cmi.y (yylex): `-' can start a numeric constant.
        * charspace/char.c (do_char): do the reporting of the charcodes (as we
          process them) here.
        * charspace/main.c (main): not here.
        * charspace/char.h (do_char): void now, not boolean.
        * charspace/symtab.c (symval_as_string): new routine.
        * charspace/symtab.h (symval_as_string): declare it.
        * charspace/char.c (resolve_sidebearing): complain if the sb defn 
          can't be resolved.
        * charspace/main.c (main): the symbol table value of 'designsize'
          should be in pixels, not points.
        * charspace/output.c (update_tfm_info_from_symtab, find_tfm_info, 
          write_gf): convert back to points.
        * charspace/char.c (get_designsize_in_points): new routine.
          (update_sidebearings): convert back here, too.
        * charspace/char.h: declare it.
        * charspace/main.c (read_encoding_info): use an existing TFM file as a
          last resort to guess the codingscheme.
        * charspace/output.c (find_tfm_info): guess the x-height; implies 
          passing in 'chars' now, sigh. (xheight_char): new global.
        * charspace/output.h (xheight_char): declare it.
        * charspace/main.c (read_command_line): new option '-xheight-char'.
          (USAGE): document it.
        * charspace/symtab.c, output.c, main.c: remove all the logging junk; 
          include report.h instead of logreport.h.
        * charspace/output.c (find_tfm_info): call 'tfm_set_fontsize'.
        * charspace/cmi.y (char): reversed sense of condition for preserving 
          old kerns.
        * charspace/main.c (main): set 'dpi_real' near the beginning.

Sat Jun 13 09:33:37 1992  Karl Berry  (karl@hayley)

        * charspace/symtab.c (symtab_char_node): call `init_char' on the new 
          value.
        * charspace/cmi.y (yylex): keep track of line numbers.
          (lineno): new static.
          (yyerror): print the filename and line number.
        * charspace/output.c (update_tfm_info_from_symtab): don't call 
          symtab_lookup with a possible NULL name.
        * charspace/cmi.y (token_number): if have a normal identifier, save its
          name in yylval.
        * charspace/input-cmi.c (read_cmi_file): call `libfile_start'.
        * charspace/all files: misc. changes for compilation.
        * charspace/symtab.c (symtab_lookup, symtab_lookup_real): finally get 
          around to defining these.
        * charspace/char.c: update for new list fn names.
        * charspace/output.c: complete rewrite.

Fri Jun 12 11:06:05 1992  Karl Berry  (karl@hayley)

        * charspace/char.c (do_char): move here.
        * charspace/main.c: from here.
        * charspace/char.h: declare it.

Thu Jun 11 11:06:47 1992  Karl Berry  (karl@hayley)

        * charspace/char.h (char_type): new field `tfm_info'.
          (CHAR_TFM_INFO): new macro to access it.

Thu Jun 11 09:07:01 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (.NOEXPORT): new target, since Autoconf doesn't add
          it automatically any more.

Wed Jun 10 08:27:07 1992  Karl Berry  (karl@hayley)

        * charspace/input-cmi.[ch]: new files extracted from main.c.
        * charspace/GNUmakefile (c_and_h): add `input-cmi'.
        * charspace/cmi.y: include input-cmi.h.

Tue Jun  9 10:25:30 1992  Karl Berry  (karl@hayley)

        * charspace/main.c (do_char): complete rewrite for new data structures.
        * charspace/symtab.c (symtab_resolve, resolve_string): new routines to 
          chase names and do multiplications after the CMI stuff has all been 
          read.
        * charspace/realstrval.h: new file to declare the common parts to the 
          char and symbal structures.
        * charspace/GNUmakefile (c_and_h): add 'kern'.
        * charspace/kern.[ch]: new files.
        * charspace/symtab.c: call 'char_set_kern'.

Tue Jun  9 10:18:03 1992  Karl Berry  (karl@hayley)

        * data/defs.make (depend): make dependencies from Bison sources.

Mon Jun  8 09:09:46 1992  Karl Berry  (karl@hayley)

        * charspace/cmi.c: rewrite as a Bison grammar, cmi.y.
        * charspace/GNUmakefile (y): define to be `cmi'.
          (c_and_h): remove `cmi'.
        * charspace/main.c (read_cmi_file): move here, and call yyparse.
          (main): define `designsize' in the symbol table.

Sun Jun  7 19:35:15 1992  Karl Berry  (karl@hayley)

        * charspace/GNUmakefile (c_and_h): delete `perctab'.
        * charspace/perctab.[ch]: don't need these anymore.
        * charspace/symtab.[ch]: generalize to include the percentages.
        * charspace/main.c (read_command_line): not a fatal error if -encoding 
          was not specified.
        * charspace/sbi.[ch]: change to cmi.[ch].
        * charspace/main.c: change `sbi' to `cmi' throughout.
        * charspace/GNUmakefile (c_and_h): likewise.

Sun Jun  7 08:09:17 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (examplefiles): new variable.
        (dist): copy $(examplefiles) into doc/example.

Fri Jun  5 09:19:16 1992  Karl Berry  (karl@hayley)

        * charspace/main.c (main): `return 0' instead of `exit (0)'.  
          (From Paul Eggert)

Thu Jun  4 08:24:46 1992  Karl Berry  (karl@hayley)

        * configure.in (AC_HEADER_FILE): rename to AC_CONFIG_HEADER, for
          Autoconf 0.115.

Wed Jun  3 08:41:33 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (dist): add-version in top_distdir.

Wed Jun  3 06:19:18 1992  Karl Berry  (karl@hayley)

        * charspace/output.c (output_font): throw away the checksum from an 
          existing TFM.
        * charspace/output.c (write_files): report the output filenames.
        * charspace/symtab.c (new_symbol): call xstrdup on the key.
        * charspace/perctab.c (new_perc_def): likewise.
        * charspace/sbi.c: report each line we parse.

Tue Jun  2 12:04:29 1992  Karl Berry  (karl@hayley)

        * charspace/char.h (alloc_char): declare this.
        * charspace/char.c (alloc_char): new function.
        * charspace/sbi.c: rewrite to make each cmd a separate function.

Mon Jun  1 08:54:43 1992  Karl Berry  (karl@hayley)

        * charspace/sbi.h, charspace/main.h, charspace/sbi.c (give_warnings): 
          rename to `warn_p'.
        * charspace/main.c (do_char): keep a local var instead of doing a 
          bunch of returns.
        * charspace/char.c (get_kern{_character,}_element: take an unsigned for
          `index', instead of an int.
        * charspace/char.h: change decls.
        * charspace/char.c (init_char): return a new character, instead of 
          changing an allocated one.
        * charspace/char.h (init_char): change decl correspondingly.
        * charspace/main.c (main): do not initialize the array at the beginning;
          make it a static array of pointers instead.
        * charspace/{sbi,output}.h: change decl of `chars'.
        * charspace/output.c (find_widths, output_font): same.
        * charspace/sbi.c (read_sbi_file): same.
        * charspace/main.c (read_sbi_file_list): use * instead of indexing to go
          through the sbi file list.
        * charspace/main.c (main): open the log file in current directory.
        * charspace/sbi.c (WORD_MAX): remove, as it's unused.
        * charspace/main.h: remove unneeded externs.
        * charspace/main.h (DEBUG*): remove these macros.
        * charspace/main.c (debug) [DEBUG]: remove.
        * charspace/{perctab,sbi,symtab}.c: change DEBUG calls to LOG.
        * charspace/main.c (alphabet_sbi_name): remove, since there's no need 
          for an option anyway.  Is there?
        * charspace/main.c (encoding_name): make static.
        * charspace/sbi.c (input_name): remove this global, as it's no longer 
          used.
        * charspace/sbi.h: remove decl.
        * charspace/main.c (main): do not set it.
        * charspace/main.c ({start,end}ing_char): declare as `charcode_type', 
          not `int'.

Sat May 30 15:31:50 1992  Karl Berry  (karl@hayley)

        * charspace/main.c (main): change call to `tfm_convert_pl'.

Fri May 29 11:44:57 1992  Karl Berry  (karl@hayley)

        * charspace/main.c (main): change return type to `int'.

Fri May 29 08:36:46 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (completedirs): add `doc' (temporarily).

Thu May 21 15:00:30 1992  Karl Berry  (karl@hayley)

        * GNUmakefile.in (programs): `imagetofont' => `imageto'.

Thu May 21 13:16:12 1992  Karl Berry  (karl@hayley)

        * data/defs.make (clean): remove dvi etc. files here.
          (distclean): not here.
        * data/defs.make (BISONFLAGS): remove -v.

Mon May 18 17:40:34 1992  Karl Berry  (karl@hayley)

        * data/defslib.make: doc fix.
        * data/defs.make (dist): new target.
          (distdir): new variables.
        * data/defsprog.make (dist): new target.

Mon May 18 12:01:42 1992  Karl Berry  (karl@hayley)

        * configure.in: change top-level Makefile name to `GNUmakefile.in'.
        * GNUmakefile.in: renamed from Makefile.in.
        * Makefile.in (dist): rewrite to `make dist' in subdirs.
        * Makefile.in (alldirs): move `doc' here.
          (completedirs): from here.
        * Makefile.in (dist): copy testfont.tex into `data'.

Sat May 16 10:09:34 1992  Karl Berry  (karl@hayley)

        * configure.in: PROG_CPP must come before GCC_TRADITIONAL.

Fri May 15 09:05:22 1992  Karl Berry  (karl@hayley)

        * configure.in: add AC_GCC_TRADITIONAL and AC_PROG_CPP.
        * configure.in: AC_HEADER_MISSING is now AC_HEADER_CHECK.
        * Makefile.in (exec_prefix): new variable.
          (bindir): use it.

Thu May 14 22:22:38 1992  Karl Berry  (karl@claude.cs.umb.edu)

        * data/defs.make (X_libraries): add dlsym.o.

Thu May 14 06:41:19 1992  Karl Berry  (karl@hayley)

        * Makefile.in (app_defaults_dir): -> app-defaults.

Wed May 13 08:55:11 1992  Karl Berry  (karl@hayley)

        * Makefile.in (VPATH): change for new Autoconf.

Sat May  9 10:21:08 1992  Karl Berry  (karl@hayley)

        * Makefile.in (dist): make dist in doc; copy COPYING*.

Fri May  8 15:58:53 1992  Karl Berry  (karl@hayley)

        * data/defs.make (*clean): change semantics again.

Thu May  7 08:13:03 1992  Karl Berry  (karl@hayley)

        * data/defs.make (X_libraries): change back to -lXaw now that we can
          link with the dlsym stuff.
        * data/defs.make (TAGS): add dependencies on the source files; move to
          defsprog.make.

Thu May  7 08:10:40 1992  Karl Berry  (karl@hayley)

        * Makefile.in (dist): don't link include/*.in, we've already got it.

Wed May  6 09:19:20 1992  Karl Berry  (karl@hayley)

        * charspace/main.c (read_sbi_file_list): don't loop through a null list.
        * charspace/main.c: doc fix.

Wed May  6 09:17:30 1992  Karl Berry  (karl@hayley)

        * data/defs.make (XCFLAGS) [hayley]: set this to include -Wall.

Mon May  4 14:24:39 1992  Karl Berry  (karl@hayley)

        * Makefile.in (gsrenderfont): remove this target.
          (all): don't depend on it.

Thu Apr 30 09:29:34 1992  Karl Berry  (karl@hayley)

        * charspace/char.c (init_char): initialize the lig/kern lists.
        * charspace/char.h: doc fixes.
        * charspace/main.c (unparsed_range): remove.

Tue Apr 28 10:16:39 1992  Karl Berry  (karl@hayley)

        * configure.in: Autoconf's prefix is now AC_, not M_.

Thu Apr 23 07:32:29 1992  Karl Berry  (karl@hayley)

        * configure.in: test $GCC instead of grepping for `gcc' in $CC.
        * Makefile.in (dist): distribute include/*.in.
        * Makefile.in (.NOEXPORT): remove this, as configure now puts it
          in automatically.

Wed Apr 22 12:58:49 1992  Karl Berry  (karl@hayley)

        * Makefile.in (prefix): set to /usr/local; configure doesn't do
          M_SUBST.
        * configure.in: M_MEMORY_H is now M_NEED_MEMORY_H.

Sun Apr 19 10:41:25 1992  Karl Berry  (karl@hayley)

        * data/defs.make (mostlyclean): rm *.output.
        * data/defs.make (distclean): new target, same as `realclean'.

Sun Apr 19 10:41:07 1992  Karl Berry  (karl@hayley)

        * Makefile.in (distclean): add this as a target.

Wed Apr 15 15:25:55 1992  Karl Berry  (karl@hayley)

        * charspace/output.c: `make_output_filename' is now `extend_filename'.

Wed Apr 15 13:38:18 1992  Karl Berry  (karl@hayley)

        * data/defs.make (YACC, YFLAGS): add these.
          (realclean): remove the .c and .h files made from bison files.
          (objects): add a .o for the yacc files.

Tue Apr 14 13:33:26 1992  Karl Berry  (karl@hayley)

        * data/defs.make (realclean): make a :: rule.

Sun Apr 12 14:08:35 1992  Karl Berry  (karl@hayley)

        * Makefile.in (bzrtospecial): add *.el to the distributed list.

Wed Apr  8 14:14:58 1992  Karl Berry  (karl@hayley)

        * data/dvips.enc: character 32 is a space, not undefined.

Wed Apr  8 09:31:37 1992  Karl Berry  (karl@hayley)

        * Makefile.in (all): depend on gsrenderfont.
          (gsrenderfont/gsrenderfont): make it by substituting for the lib-path.
          (gsrenderspecial): dist gsrf.in instead of gsrenderfont.
          (versionfiles): likewise.

Tue Apr  7 13:58:50 1992  Karl Berry  (karl@hayley)

        * Makefile.in (dist): copy the .ad files into the distribution
          directory, not the working dirs.

Mon Mar 30 09:31:38 1992  Karl Berry  (karl at hayley)

        * data/psymbol.enc: new file.

Sun Mar 29 19:10:12 1992  Karl Berry  (karl at hayley)

        * charspace/main.c (read_command_line): remove empty else.

Sun Mar 29 08:42:54 1992  Karl Berry  (karl at hayley)

        * Makefile.in (programs, libraries, etc.): use $(MAKE), not `make'.

Sat Mar 28 07:46:49 1992  Karl Berry  (karl at hayley)

        * data: Version 0.4.
        * data: Change copyright years to 1992 only.

Sat Mar 28 07:46:29 1992  Karl Berry  (karl at hayley)

        * charspace: Version 0.4.
        * charspace: Change copyright years to 1992 only.

Sat Mar 28 07:44:42 1992  Karl Berry  (karl at hayley)

        * Version 0.4.
        * Change copyright years to 1992 only.

Fri Mar 27 19:46:49 1992  Karl Berry  (karl at hayley)

        * PROJECTS: move to doc.
        * Makefile.in (topfiles): remove it.

Fri Mar 27 14:57:14 1992  Karl Berry  (karl at hayley)

        * charspace/symbol_table.?: rename to symtab.?.
        * charspace/perc_table.?: to perctab.?.
        * charspace/GNUmakefile (c_and_h): as above.

Thu Mar 26 20:54:23 1992  Karl Berry  (karl at claude.cs.umb.edu)

        * data/defs.make (xlibdirslash): define this to work around dynamic
          linking problems on the Sun.

Thu Mar 26 19:54:28 1992  Karl Berry  (karl at claude.cs.umb.edu)

        * Makefile.in (makeargs): pass xlibdir.
        * Makefile.in (installargs): missing quote.
          (install): do `install' in subdirs.

Thu Mar 26 06:37:55 1992  Karl Berry  (karl at hayley)

        * Makefile.in (dist): remove include/paths.h.

Wed Mar 25 08:31:49 1992  Karl Berry  (karl at hayley)

        * charspace/perc_table.c (add_to_perc_def_table): use xstrdup, not 
          strdup.

Wed Mar 25 07:20:10 1992  Karl Berry  (karl at hayley)

        * Makefile.in (topfiles): remove PROBLEMS, add COPYING.LIB.

Wed Mar 11 14:03:53 1992  Kathy Hargreaves  (kathy at hayley)

        * charspace/char.c (get_char_info): make CODE charcode_type.
        * charspace/main.c (main): make 'charcode' type 'charcode_type'.
          (do_char): ditto for CODE.
        * charspace/sbi.c (read_sbi_file): added 'encoding_name' and 
          'displacement'.
        * charspace/main.c [USAGE]: corrected -sbi-files option comment.

Tue Mar 10 10:48:19 1992  Karl Berry  (karl at hayley)

        * Makefile.in (programs): replace xbce and xlse with xbfe.
          (dist): similarly.

Mon Mar  9 12:26:26 1992  Kathy Hargreaves  (kathy at hayley)

        * charspace/sbi.h: changed comment.

Sun Mar  8 12:54:14 1992  Karl Berry  (karl at hayley)

        * data/defsprog.make ($(program)): lose our_X_library.
        * data/defs.make (mostlyclean): new target.
          (clean): remove extra stuff.
          (realclean): remove everything.
        * data/defslibs.make (clean): change to mostlyclean.
        * data/defsprog.make (clean): likewise.

Sun Mar  8 12:48:52 1992  Karl Berry  (karl at hayley)

        * configure.in: guess the value for `prefix'.
        * Makefile.in (prefix): define it as a substitution.
        * Makefile.in (mostlyclean): new target.
          (distclean): remove.
          (clean): remove the config files here, not at realclean.

Sun Mar  8 08:43:21 1992  Karl Berry  (karl at fosse)

        * data/defs.make (CFLAGS): include XCFLAGS.
          (XCFLAGS) [fosse]: define.

Sat Mar  7 13:34:55 1992  Karl Berry  (karl at fosse)

        * Makefile.in (xincludedir): new variable.
          (CFLAGS): use it.
        * configure.in: test for it.

Sat Mar  7 13:06:11 1992  Kathy Hargreaves  (kathy at hayley)

        * charspace/main.c (main): fatal if the output filename has a suffix.

Sat Mar  7 09:59:10 1992  Karl Berry  (karl at hayley)

        * configure.in: change config-auto.h to c-auto.h.
        * configure.in: substitute for LDFLAGS.

Sat Mar  7 09:32:20 1992  Karl Berry  (karl at hayley)

        * charspace/GNUmakefile (files): replace with `c_and_h', etc.
        * charspace/GNUmakefile (libraries): define correctly.

Sat Mar  7 09:19:34 1992  Karl Berry  (karl at hayley)

        * data/defs.make: set CC for fosse.
        * data/defs.make (sources, headers): define these.
        * data/defs.make (ourlib): add lib here.
          (fontutil_libraries, our_X_library): remove these.
          (bitmap_libs): define this, for callers to use.
          (librarytags): use $(libraries), remove stuff about X and pbm.

Thu Mar  5 17:31:06 1992  Karl Berry  (karl at claude.cs.umb.edu)

        * Makefile.in (makeargs): don't double the $'s.

Thu Mar  5 07:12:13 1992  Karl Berry  (karl at hayley)

        * Makefile.in (dist): add version numbers automatically; add in
          special files in bzrto and gsrenderfont.
          (bzrtospecial, gsrenderspecial): new variables.

Wed Mar  4 14:46:33 1992  Kathy Hargreaves  (kathy at hayley)

        * output.c (write_files): construct output filenames using
          make_output_filename.

Wed Mar  4 11:54:05 1992  Karl Berry  (karl at hayley)

        * charspace/input.c: rename to sbi.c.
        * charspace/GNUmakefile (files): corresponding.

Wed Mar  4 11:24:12 1992  Karl Berry  (karl at hayley)

        * gnuw: rename to 'widgets'.
        * Makefile.in (libraries): corresponding.

Wed Mar  4 10:33:52 1992  Karl Berry  (karl at hayley)

        * data/defs.make (our_X_library): change `gnuw' to `widgets'.
        * data/defs.make (headertags): remove; just use all of include/.
          (librarytags): use all the libraries.
        * data/defs.make (clean): remove TAGS here.
          (realclean): not here.

Sun Mar  1 13:02:31 1992  Karl Berry  (karl at hayley)

        * data/zdingbat.enc: new file.
        * data/defslib.make ($(library).a): use ar q, not ar r.
        * data/defs.make [need_pbm_library] (pbm_library): define.
          (fontutil_libraries): include $(pbm_library).

Sun Mar  1 12:59:09 1992  Karl Berry  (karl at hayley)

        * Makefile.in (libraries): add pbm.
        pbm: new directory.

Fri Feb 28 16:06:54 1992  Karl Berry  (karl at hayley)

        * data/dvips.enc: new file.

Tue Feb 25 10:48:47 1992  Karl Berry  (karl at hayley)

        * AUTHORS: new file.
          Makefile.in (topfiles): dist it.

Mon Feb 24 08:36:00 1992  Karl Berry  (karl at hayley)

        * configure.in [isc]: include -shlib in LDFLAGS.

Sun Feb 23 09:04:51 1992  Karl Berry  (karl at hayley)

        * GNUmakefile (dist): update for various new directories and files.

Sat Feb 22 12:52:16 1992  Karl Berry  (karl at hayley)

        * data/adobestd.enc: rename from standard.enc.

Mon Feb 17 15:59:52 1992  Karl Berry  (karl at hayley)

        * data/postscript.map (cmtext): this is now named textext.
        * data/defs.make (our_X_library): define this to be gnuw.
        * data/defsprog.make (program): depend on $(our_X_library).

Sun Feb 16 12:24:16 1992  Kathy Hargreaves  (kathy at hayley)

        * charspace/output.c (find_widths): set freed tfm char kern list to 
          NULL.

Sun Feb 16 09:31:32 1992  Karl Berry  (karl at hayley)

        * data/defs.make (X_libraries): include gnuw.a here.
          (ourlibs): not here.

Tue Feb 11 10:14:18 1992  Karl Berry  (karl at hayley)

        * data/defs.make (X_libraries): append $(wlibs), add -l to each.
          (syslibs): remove this.
          (sys_libraries): rename to LIBS.
          (LOADLIBES): include LIBS and X_libraries.
          (copt): remove this.

Tue Feb 11 09:56:23 1992  Karl Berry  (karl at hayley)

        * configure.in: test for memcpy et al. only in <memory.h>.
        * configure.in: test for <limits.h> missing.
        * configure.in: test for extra window system libraries.
          Makefile.in (wlibs): new variables.
          (makeargs): pass it down to submakes.
        * configure.in: test M_ISC early, before any compiles.
        * Makefile.in (copt): remove it; use CC instead.

Mon Feb 10 09:39:54 1992  Karl Berry  (karl at hayley)

        * data/defs.make (CFLAGS): include copt.
          [hayley]: define copt=-posix.

Mon Feb 10 09:36:22 1992  Karl Berry  (karl at hayley)

        * Makefile.in (copt): new variable.

Sat Feb  8 14:48:28 1992  Karl Berry  (karl at hayley)

        * Makefile.in (realclean): remove config.status and Makefile.

Sat Feb  8 07:05:04 1992  Karl Berry  (karl at hayley)

        * data/defs.make ({extra_,}X_libraries): only define these if
          `need_X_libraries' is defined.

Sun Feb  2 13:50:53 1992  Karl Berry  (karl at hayley)

        * Makefile.in: rename paths.h-dist to paths.h.in.

Sat Feb  1 15:04:16 1992  Karl Berry  (karl at hayley)

        * charspace/main.c (read_sbi_file_list): use basename, not depath.

Sat Feb  1 14:57:12 1992  Karl Berry  (karl at hayley)

        * Makefile.in (default_subdir_path): remove.
        (default_tfm_path): change to new syntax for subdirs.

Fri Jan 31 17:04:20 1992  Karl Berry  (karl at hayley)

        * charspace/main.c (read_command_line): declare `option_index' (for new
          getopt).

Wed Jan 22 13:12:21 1992  Kathy Hargreaves  (kathy at hayley)

        * charspace/input.c (read_sbi_file): copy the string before doing the 
          below.
        * charspace/input.c (read_sbi_file): in case char-percent, assign a 
          string to the displacement field of the character.
        * charspace/char.h (displacement_type): made the displacement field a 
          string.
        * charspace/char.c (sym_string_to_value): changed sb_string_to_value to 
          this name.
          (do_displacement): call sym_string_to_value on the character's
          displacement.
        * charspace/input.c (read_sbi_file): added `char-percent' command.
        * charspace/char.h [CHAR_UNSET_VALUE]: added definition.
        * charspace/char.c (init_char): added routine to initialize the parts 
          of a character needed to calculate sidebearings.
        * charspace/main.c (do_char): now call do_displacement if the characters
          displacement and left sidebearing percentage are set; otherwise
          call do_sidebearings.
        * charspace/char.c (do_displacement): added routine to calculate
          sidebearings using a displacement and a left sidebearing
          percentage.
        * charspace/output.c (write_files): now give a warning and prepend an 
          'x' instead of an 'o' to the filename if the output file is the same
          one as the input file.

Mon Jan 20 13:51:42 1992  Kathy Hargreaves  (kathy at hayley)

        * charspace/main.c (read_sbi_file_list): call `depath' on the current 
          sbi name in the list and on 'font_name' when comparing them.

Wed Jan 15 13:00:59 1992  Karl Berry  (karl at hayley)

        * configure.in: do not test for getwd.

Wed Jan 15 12:25:26 1992  Kathy Hargreaves  (kathy at hayley)

        * charspace/main.c (scan_string_list, read_sbi_files): added these so
          could read a list of SBI files.
        * charspace/main.c: call add_perc_defs_to_symbol_table instead of
          calculating percentages ``by hand.''
        * charspace/input.c (read_sbi_file): added `define_perc' case.
        * charspace/perc_def_table.[ch]: added for percentage definitions.
        * charspace/input.c (read_sbi_file): don't fatal, only give warnings 
          about characters in SBI files which aren't in the encoding if a
          boolean is sent in.  (This gets around getting warnings for the
          default alphabet SBI file.)

Sun Jan 12 12:13:59 1992  Karl Berry  (karl at hayley)

        * Makefile.in (default_lib_path): remove `.', as it is added
          automatically now.
        * Makefile.in (.NOEXPORT): new target.

Sat Jan 11 09:53:56 1992  Karl Berry  (karl at hayley)

        * Makefile.in (CFLAGS): remove -I$(srcdir), and use
          -I../$(srcdir)/include.

Fri Jan 10 15:36:17 1992  Karl Berry  (karl at hayley)

        * Makefile.in (default_tfm_path): set to null.

Thu Jan  9 07:55:08 1992  Karl Berry  (karl at hayley)

        * data/defslib.make (install): use `INSTALL_DATA' (except it's
          commented out).
        * data/defsprog.make (install): use `INSTALL_PROGRAM'.
        * data/defs.make: rename `kbase' to `lib', remove `getopt', etc.

Wed Jan  8 15:41:13 1992  Karl Berry  (karl at hayley)

        * config: we don't need this directory any more.
        * configure: or this script.
        * fontutils.in: the input to autoconf, so it can make the
          configure script.

        * GNUmakefile (programs): remove ospace and gsrenderfont, add
          charspace.

        * rename `lib' as `data', and `kbase' as `lib'.  Merge `getopt'
          into `lib'.
        * GNUmakefile (libraries): change to match.

Tue Dec 24 16:41:51 1991  Kathy Hargreaves  (kathy at hayley)

        * GNUmakefile (DEFAULT_LIB_PATH): define using $(shell pwd), not
          the nonexistent $(PWD).

Sun Nov 17 06:55:50 1991  Karl Berry  (karl at hayley)

        * data/postscript.map: don't refer to `postscript.c', since it's been
          renamed to pstype3.c.

Tue Oct  1 10:07:34 1991  Karl Berry  (karl at hayley)

        * all files: change copyright notices to not use dashes.

Tue Jul 30 13:19:05 1991  Karl Berry  (karl at ra.cs.umb.edu)

        * data: Version 0.3.

Tue Jul 30 13:16:38 1991  Karl Berry  (karl at ra.cs.umb.edu)

        * Version 0.3.

Fri Jul 26 10:33:26 1991  Karl Berry  (karl at hayley)

        * PROJECTS: new file.

        * GNUmakefile (programs): `fit-outlines' is now `limn'; include
          `gsrenderfont'.

Wed Jul 24 15:17:33 1991  Karl Berry  (karl at ra.cs.umb.edu)

        * configure: exit 0 at the end.

Mon Jul 22 06:08:10 1991  Karl Berry  (karl at hayley)

        * GNUmakefile (programs): add imagetofont.

Fri Jul 19 09:11:07 1991  Karl Berry  (karl at hayley)

        * data/defs.make (XINCLUDES): remove this.
          [hayley.fsf.org]: use XCFLAGS instead.
        * data/*.make: change `fileinstall' to `INSTALLDATA' and `proginstall'
          to `INSTALL'.

Fri Jul 19 08:31:06 1991  Karl Berry  (karl at hayley)

        * GNUmakefile: add many variables to be overridden.
        * config: rename to configure.
        * configfiles: rename to config.

Fri Jun 28 08:59:06 1991  Karl Berry  (karl at hayley)

        * data/defslib.make ($(library).a): remove the .a file before remaking 
          it.

Fri Jun 14 15:35:46 1991  Karl Berry  (karl at hayley)

        * data/defs.make (OPT, LDOPT): replace with XCFLAGS and XLDFLAGS.
          (gnu): remove.
          (LOADLIBES): rework so that our libraries aren't looked for in lib.
        * data/defsprog.make ($(program)): redo the library dependencies.
        * data/defslib.make (install): remove this target; the libraries don't
          get installed anywhere anymore.

Wed Jun 12 05:42:44 1991  Karl Berry  (karl at hayley)

        * GNUmakefile (tags): rename to `TAGS'.
        (distclean): new target.

Tue Jun 11 16:40:34 1991  Karl Berry  (karl at hayley)

        * data/defsprog.make (default): rename to `all'.
        * data/defs.make (default): new dependency `all'.
          (tags): rename to `TAGS'.
          (webclean): delete.

Sun Jun  9 13:44:07 1991  Karl Berry  (karl at hayley)

        * data/defs.make (proginstall, fileinstall): use -f for installation.

Thu Jun  6 07:30:56 1991  Karl Berry  (karl at hayley)

        * data/*.make: change to version 2 of the GPL.

Thu Jun  6 07:11:45 1991  Karl Berry  (karl at hayley)

        * COPYING: change to version 2 of the GPL.

Sat Apr 13 17:06:15 1991  Karl Berry  (karl at hayley)

        * data/cmtext.enc: rename to textext.enc.

Mon Apr  8 08:34:13 1991  Karl Berry  (karl at hayley)

        * data/cmtext.enc: add ligatures.

Sat Mar 30 03:54:14 1991  Karl Berry  (karl at hayley)

        * data/texlatin.enc: change `quoteright' to `caron', on the advice of
          the linguists.

Wed Mar 27 10:28:45 1991  Karl Berry  (karl at hayley)

        * data/texlatin.enc: change code 055 to `asciihyphen', and 0177 to
          `hyphen'.

Sun Mar 24 16:59:49 1991  Karl Berry  (karl at hayley)

        * data/texlatin.enc: new file.

Sun Mar 24 16:17:03 1991  Karl Berry  (karl at hayley)

        * GNUmakefile (dist): new dependencies `depend' and `TAGS'.

Mon Mar 11 08:19:59 1991  Karl Berry  (karl at hayley)

        * GNUmakefile (dist): put bzrto/KKBuildChar.PS in the
          distribution.

Sun Mar 10 16:26:14 1991  Karl Berry  (karl at hayley)

        * GNUmakefile (DEFAULT_TFM_PATH): change the default to `.'.

Fri Mar  8 08:42:49 1991  Karl Berry  (karl at hayley)

        * GNUmakefile (install): pass bindir as an arg to make.
        * GNUmakefile (dist): make an empty directory `bin'.  (from
          rich@rice.edu)
        * GNUmakefile (include/s.h): run ./config, not config, for the
          sake of people who might have a system config earlier in their
          path.  (from ian@sq.com)

Thu Mar  7 07:33:13 1991  Karl Berry  (karl at hayley)

        * data: Version 0.2.

Thu Mar  7 07:30:59 1991  Karl Berry  (karl at hayley)

        * Version 0.2.

Wed Mar  6 10:05:28 1991  Kathy Hargreaves  (kathy at hayley)

        * config: use `sunosNNN' instead of `sunNNN'.

Mon Mar  4 15:14:41 1991  Karl Berry  (karl at hayley)

        * GNUmakefile (programs): fontconcat is gone.

Fri Mar  1 09:53:28 1991  Karl Berry  (karl at hayley)

        * GNUmakefile (completedirs, topfiles): new variables to help in
          `make dist'.

Mon Feb 25 09:20:37 1991  Karl Berry  (karl at hayley)

        * GNUmakefile (programs): include `bzrto'.

        * GNUmakefile (DEFAULT_LIB_PATH): include `pwd`/lib.

Sun Feb 17 09:54:28 1991  Karl Berry  (karl at hayley)

        * GNUmakefile (realclean): remove include/{s,paths}.h.

Sat Feb 16 17:43:01 1991  Karl Berry  (karl at hayley)

        * data/defs.make (OS): remove this, since we use a configuration file
          now.

Sat Feb 16 17:21:39 1991  Karl Berry  (karl at hayley)

        * GNUmakefile (all): new dependencies, on include/paths.h
          and include/s.h.
        * GNUmakefile (include/paths.h): new target.

Mon Jan  7 09:20:23 1991  Karl Berry  (karl at hayley)

        * data/defs.make [HOSTNAME=hayley] (sys_libraries): do not include
          cposix anymore; gcc is configured to do so automatically. [No,
          rescind this, because of shared libraries gcc doesn't do this
          anymore.]
        * data/defs.make: doc fix.

Wed Dec 12 15:49:27 1990  Karl Berry  (karl at ra.cs.umb.edu)

        * data/defs.make (OS): allow for SunOS 4.1.

Fri Nov 23 09:45:16 1990  Karl Berry  (karl at hayley)

        * data/defs.make (research_libraries): add bzr.
          (LOADLIBES): don't use `libraries'.

Sat Nov 17 11:28:25 1990  Karl Berry  (karl at hayley)

        * GNUmakefile (programs): add fit-outlines.

Thu Nov  1 08:51:29 1990  Karl Berry  (karl at hayley)

        * INSTALL: DEFAULT_TFM_PATH has moved from kbase/filename.c to
          kbase/font.c.

Wed Oct 24 14:57:57 1990  Karl Berry  (karl at aten)

        * Version 0.1.

Sun Oct 21 16:23:20 1990  Karl Berry  (karl at hayley)

        * GNUmakefile (libraries): add gnuw.

Fri Oct  5 07:13:30 1990  Karl Berry  (karl at hayley)

        * data/defs.make (INCLUDES): use XINCLUDES to get extra directories
          into the list.

Sun Sep 30 08:43:44 1990  Karl Berry  (karl at hayley)

        * GNUmakefile (programs): add fontconcat.

Mon Sep 24 16:40:17 1990  Karl Berry  (karl at claude)

        * data/defslib.make (install): remove the library after installing it.
        * data/defs.make: use `SunOS41', not `SUNOS4'.

Mon Sep 17 18:56:34 1990  Karl Berry  (karl at aten)

        * data/defs.make (gnu_libraries): only use malloc if I'm at home.
        
Fri Sep 14 10:41:38 1990  Karl Berry  (karl at hayley)

        * data/defslib.make (install): use `libdir', not `researchdir'; use
          `$(fileinstall)', not `mv'; use `$(AR)', not `ar'.
        * data/defsprog.make (install): use `$(proginstall)', not `mv'.
        * data/defs.make (researchdir): rename to libdir.
        

Sat Sep  8 09:01:02 1990  Karl Berry  (karl at hayley)

        * data/defs.make: check the envvar HOSTNAME instead of HOSTTYPE.

Fri Sep  7 13:43:18 1990  Karl Berry  (karl at hayley)

        * data/defs.make (LINT): remove this.

Sat Aug  4 14:01:09 1990  Karl Berry  (karl at hayley)

        * data/defs.make (OPT) [i386]: define USG instead of USGr3, for the
          sake of X.
          (LDFLAGS): search /usr/local/lib.
          (INCLUDES): search /usr/local/include.

Fri Jul 13 16:52:35 1990  Karl Berry  (karl at hayley)

        * data/defsprog.make (library_files): compose list from both
          $(libraries) and $(research_libraries), not just the former.

Thu Jul 12 09:05:47 1990  Karl Berry  (karl at hayley)

        * data/defs.make (realclean): remove .dvi and .log files.

Fri Jun 22 15:16:52 1990  Karl Berry  (karl at hayley)

        * data/defsprog.make ($(program)): make dependent on the libraries as
          well as the objects.
        * data/defs.make (CFLAGS, extra_X_libraries): make definitions depend
          on whether we're running under system V (to make development
          easier).

Thu Jun 21 14:27:14 1990  Karl Berry  (karl at claude)

        * data/defs.make (default): define as a :: rule.
        * data/defslib.make (default): define to be `install'.
        * data/defsprog.make (default): define to be `$(program)', so the
          program doesn't get installed by default.
        * data/defs.make (LDFLAGS): use LDOPT, not LOPT.

Mon Jun  4 15:40:00 1990  Karl Berry  (karl at hayley)

        * data/defs.make (load_libraries): change the name to $(LOADLIBES). 
        * data/defsprog.make: ($(program)): likewise.
        * data/defs.make (LFLAGS): don't include $(OPT); instead, make a new
          variable, $(LDOPT).  Also, change the name to $(LDFLAGS).

Sat Jun  2 16:09:22 1990  Karl Berry  (karl at hayley)

        * data/defs.make (link_libraries): add $(libraries) back in.

Wed May  2 11:53:13 1990  Karl Berry  (karl at claude)

        * data/defslib.make (researchinstall): do mv -f, not just mv.

Thu Apr 12 14:28:39 1990  Karl Berry  (karl at hayley)

        * data/defs.make: always link with the font libraries, since
          kbase/font.c needs them.

Wed Apr  4 16:45:36 1990  Karl Berry  (karl at aten)

        * data/defsprog.make: do mv -f, not just mv.

Tue Apr  3 08:59:09 1990  Karl Berry  (karl at hayley)

        * data/defs.make: new variables `gnu_libraries', `X_libraries',
          `extra_X_libraries', `sys_libraries', linked with in that order.

Sun Mar 25 12:00:43 1990  Karl Berry  (karl at aten)

        * data/defs.make: don't define the `libraries' variable to be empty.

Mon Nov 13 08:16:53 1989  Karl Berry  (karl at hayley)

        * data/defs.make (realclean): delete #* and *~, also.

Mon Oct 30 19:18:40 1989  Karl Berry  (karl at hayley)

        * data/ all files: add the copyleft.

Tue Oct 10 10:05:53 1989  Karl Berry  (karl at hayley)

        * data/defs.make: delete the ifdef profile definitions, and define OPT,
          which is included in CFLAGS and LFLAGS, instead.  Now can say,
          e.g., `make OPT=-pg', instead of `make profile=t'.
        * data/defsprogram.make: rename this to defsprog.make, for the sake of
          system V.

Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.

Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.


Local Variables:
mode: indented-text
left-margin: 8
fill-column: 76
version-control: never
End: