1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
|
2005-11-04 Patrick Lam <plam@mit.edu>
* fc-lang/fc-lang.c:
* src/fccharset.c:
* src/fcint.h:
* src/fclang.c:
Fix bug 2878 (excessive relocations at startup for charsets,
reported by Ross Burton): fc-lang/fc-lang now creates the
static form of the langset, not the dynamic form, so that
the charsets should now be in .rodata.
2005-11-04 Patrick Lam <plam@mit.edu>
* src/fcdir.c (FcDirScanConfig):
Add test for validity of directory caches that
somehow got lost (reported by make distcheck).
2005-11-04 Patrick Lam <plam@mit.edu>
* ChangeLog:
* README:
* configure.in:
* fontconfig/fontconfig.h:
Bump version to 2.3.92.
2005-11-02 Patrick Lam <plam@mit.edu>
* src/fcpat.c (FcPatternDuplicate):
Fix argument ordering problem in call to FcPatternTransferFullFname.
2005-11-02 Patrick Lam <plam@mit.edu>
* src/fcfreetype.c (FcFreetypeQuery):
* src/fcpat.c (FcPatternDestroy, FcPatternDuplicate,
FcPatternTransferFullFname):
Fix warnings and embarrassing double-free error.
2005-11-02 Zhe Su <zsu@novell.com>
reviewed by: plam
* fonts.conf.in:
Change the rule for artificial emboldening in fonts.conf.in. This
enables the support for artificial emboldening included in cairo.
2005-11-02 Patrick Lam <plam@mit.edu>
* src/fcpat.c (FcPatternDestroy, FcPatternTransferFullName):
Don't zero out full names for FC_REF_CONSTANT fonts;
also, duplicate full names when transferring, and free
full names when freeing the associated font.
Reported by Jinghua Luo.
2005-11-02 Patrick Lam <plam@mit.edu>
* fc-cache/fc-cache.c (scanDirs):
* src/fcpat.c (FcValueListSerialize):
Revert the previous patch and commit the correct patch:
I forgot a canonicalization in FcValueListSerialize, so
that it would choke on already-serialized input files. Duh!
2005-11-02 Patrick Lam <plam@mit.edu>
* fc-cache/fc-cache.c (scanDirs):
Forcibly rescan a directory before writing a fresh local
cache file for that directory, fixing the losing-fonts
problem reported by Mike Fabian and also apparently the
font cache file corruption.
2005-11-02 Patrick Lam <plam@mit.edu>
* src/fccache.c (FcGlobalCacheLoad):
Fix thinko: actually, the whole global cache is stale
if the global cache is older than the (newest) config file.
2005-11-02 Patrick Lam <plam@mit.edu>
* src/fccache.c (FcGlobalCacheLoad):
* src/fccfg.c (FcConfigModifiedTime, FcConfigBuildFonts):
* src/fcint.h:
Declare the global cache of a directory's contents to be stale if
the directory is newer than the (newest) configuration file.
2005-10-31 Patrick Lam <plam@mit.edu>
* src/fcint.h:
* src/fclist.c (FcListAppend):
* src/fcmatch.c (FcFontRenderPrepare):
* src/fcpat.c (FcPatternTransferFullFname, FcPatternDuplicate,
FcPatternFreeze, FcPatternBaseFreeze):
Copy the full pathname whenever duplicating an FcPattern; otherwise,
applications continue breaking.
2005-10-31 Patrick Lam <plam@mit.edu>
* fc-cat/fc-cat.c (FcCacheFileRead, main):
* src/fcfreetype.c (FcFreeTypeQuery):
Fix small memory error (tried to free argv); use basename and
dirname correctly (they can modify their arguments).
2005-10-31 Patrick Lam <plam@mit.edu>
* fc-cat/fc-cat.c:
* src/fccache.c:
* src/fcfreetype.c:
* src/fcint.h:
* src/fclist.c:
* src/fcpat.c:
Reinstate basename patch, but keep a hash table linking FcPatterns
to their fully-qualified font names for clients' benefit. Clients
only pay for the font names once they request the FC_FILE property
from an FcPattern, but the font name is malloc'd at that point (i.e.
not mmapped: that's impossible, since it may vary between machines.)
Clients do have to pay for a copy of the path name per cache file.
Note that FcPatternGetString now does some rewriting if you ask
for an FC_FILE, appending the pathname as appropriate.
2005-10-31 Patrick Lam <plam@mit.edu>
* src/fcfreetype.c (FcFreeTypeQuery):
Revert basename patch, which breaks fontconfig clients on my system.
2005-10-25 Jinghua Luo <sunmoon1997@gmail.com>
reviewed by: plam
* fontconfig/fonts.conf.in:
* fontconfig/fontconfig.h:
* src/fcdefault.c:
* src/fcname.c:
Add FC_EMBEDDED_BITMAP object type to tell Xft/Cairo whether
to load embedded bitmaps or not.
2005-10-25 Patrick Lam <plam@mit.edu>
* src/fcfreetype.c (FcFreeTypeQuery):
Only add basename to patterns' FC_FILE element, not any part of
the dirname.
2005-10-22 Patrick Lam <plam@mit.edu>
* src/fcfreetype.c:
Add some more consts, fixing more GCC4 warnings.
2005-10-22 Zhe Su <zsu@novell.com>
reviewed by: plam
Support localized font family and style names.
This has been reported to break old apps like xfd, but modern
(gtk+/qt/mozilla) apps work fine.
2005-10-21 Patrick Lam <plam@mit.edu>
* src/fccache.c (FcGlobalCacheLoad):
Destroy the global cache file if it's terminally broken. (reported by
Mike Fabian)
2005-10-21 Patrick Lam <plam@mit.edu>
* fc-list/fc-list.c (main):
* src/fcname.c (FcNameUnparse, FcNameUnparseEscaped):
* fontconfig/fontconfig.h:
Prevent fc-list from escaping strings when printing them (reported by
Matthias Clasen).
2005-10-20 Marcus Meissner <meissner@suse.de>
reviewed by: plam
* fontconfig/fontconfig.h:
Add valist sentinel markup for FcObjectSetBuild and FcPatternBuild.
2005-10-14 Ross Burton <ross@burtonini.com>
reviewed by: plam
* fc-glyphname/fc-glyphname.c:
* src/fclang.c:
Add consts to variables so as to move arrays into .rodata.
2005-10-14 Mike Fabian <mfabian@suse.de>
reviewed by: plam
* src/fccache.c (FcDirCacheUnlink):
Check existence of directory cache file before attempting to unlink.
2005-10-13 Patrick Lam <plam@mit.edu>
* src/fccache.c (FcDirCacheUnlink):
Fix flipped return value on unlink. (Reported by Mike Fabian)
2005-10-12 Patrick Lam <plam@mit.edu>
* src/fccache.c:
* src/fcdir.c (FcDirScanConfig):
* src/fcint.h:
When fc-cache is run without --force, use directory cache files
to speed up fc-cache run time. (Reported by Mike Fabian)
2005-10-06 Patrick Lam <plam@mit.edu>
* src/fcname.c (FcObjectToPtr):
* src/fcpat.c (FcStrStaticName):
Add padding to make valgrind and glibc not hate each other
when calling strlen().
2005-10-05 Simos Xenitellis <simos74@gmx.net>
reviewed by: plam & keithp
* fonts.conf.in:
Modify config file to use Greek fonts before Asian fonts with
Greek glyphs.
2005-10-05 Christian Biesinger <cbiesinger@web.de>
reviewed by: plam & keithp
* src/Makefile.am:
Use libtool -no-undefined flag on all platforms.
2005-10-05 Patrick Lam <plam@mit.edu>
* src/fccache.c (FcCacheHaveBank):
Implement move-to-front array for banks (perf regression
reported by Ronny V. Vindenes).
2005-10-04 Patrick Lam <plam@mit.edu>
* src/fccache.c (FcDirCacheValid, FcDirCacheUnlink,
FcDirCacheHasCurrentArch):
* fc-cache/fc-cache.c (scanDirs):
* fontconfig/fontconfig.h:
Add new API which unlinks directory caches and checks dir caches
for existence of appropriate sections. Fix fc-cache to unlink
stale cache files and save directory caches that lack relevant
sections.
2005-10-03 Patrick Lam <plam@mit.edu>
* src/fccache.c (FcDirCacheValid):
Ensure that a directory cache has the appropriate section
before reporting that it is valid (reported by Matthias Clasen).
2005-09-29 Mathias Hasselmann <mathias.hasselmann@gmx.de>
reviewed by: plam
* configure.in:
* src/Makefile.am:
* src/fcxml.c:
Use libxml2 if requested (with --enable-libxml2) or if
expat is not available.
2005-09-29 Patrick Lam <plam@mit.edu>
* src/fccache.c (FcGlobalCacheSave, FcDirCacheWrite):
Fix multi-arch cache files: compute the position for the
block to be added using info from OrigFile, not NewFile.
2005-09-28 Patrick Lam <plam@mit.edu>
* src/fccache.c (FcCacheMachineSignature):
Cast results of sizeof() to unsigned int to get rid of
warnings on x86_64 (thanks Matthias Clasen).
2005-09-27 Patrick Lam <plam@mit.edu>
* src/fccache.c (FcGlobalCacheSave, FcCacheCopyOld,
FcDirCacheWrite):
Use FcAtomic to rewrite cache files.
2005-09-27 Patrick Lam <plam@mit.edu>
* src/fccache.c (FcDirCacheWrite):
Don't unlink the fonts.cache-2 file even if there's no data
to write; just write an empty cache file. (thanks Lubos Lunak)
2005-09-27 Patrick Lam <plam@mit.edu>
* src/fccache.c (FcDirCacheWrite):
Allocate room for the subdirectory names in each
directory cache. Thanks to James Cloos for finding
and diagnosing this bug!
2005-09-22 Patrick Lam <plam@mit.edu>
* fc-cache/fc-cache.sgml:
* src/fccache.c (FcDirCacheWrite):
* src/fccache.h (struct FcCache):
Update documentation -- fc-cache's man page now says that you
need to run fc-cache once per cached architecture; add some
documentation to the FcCache structure.
Make fc-cache write out fonts.cache-2 files for directories with
no fonts (i.e. only subdirectories).
2005-09-22 Patrick Lam <plam@mit.edu>
* doc/edit-sgml.c:
* fc-cache/fc-cache.sgml:
* fc-case/fc-case.c:
* fc-glyphname/fc-glyphname.c:
* src/fcdefault.c:
* src/fcfreetype.c:
* src/fcinit.c:
* src/fcxml.c:
More GCC 4 cleanups, due to Behhad Esfahbod <behdad@beddad.org>.
* Makefile.am:
* configure.in:
* fc-lang/fc-lang.c:
* fontconfig/fcprivate.h:
* fontconfig/fontconfig.h:
* src/fccache.c:
* src/fccfg.c:
* src/fccharset.c:
* src/fcdbg.c:
* src/fcdir.c:
* src/fcfs.c:
* src/fcint.h:
* src/fclang.c:
* src/fclist.c:
* src/fcmatch.c:
* src/fcname.c:
* src/fcpat.c:
Implement new mmaped cache for font information.
Bump so revision to 2.3.90.
2005-07-25 Keith Packard <keithp@keithp.com>
* doc/fontconfig-user.sgml:
* fc-glyphname/fc-glyphname.c: (scan), (main):
* fc-lang/fc-lang.c: (FcConfigHome):
* fc-match/fc-match.c: (main):
* src/fccfg.c: (FcConfigHome):
* src/fcfreetype.c: (FcSfntNameTranscode), (FcSfntNameLanguage),
(FcVendorMatch), (FcFreeTypeQuery), (FcFreeTypeCharSetAndSpacing),
(addtag), (FcFontCapabilities):
* src/fcpat.c: (FcValueListEntCreate):
* src/fcstr.c: (FcStrCaseWalkerInit):
* src/fcxml.c: (FcParsePatelt), (FcConfigParseAndLoadDir):
Various GCC 4 cleanups for signed vs unsigned char
Match only [0-9]*.conf files in <include>{directory}</include>
elements to avoid loading *.rpmsave or .dpkg-old files. (otaylor)
2005-07-15 Carl Worth <cworth@cworth.org>
* src/fcint.h:
* src/fcinit.c: (FcFini):
* src/fcpat.c: (FcPatternFini): Rename FcPatternThawAll to
FcPatternFini.
* src/fcpat.c: (FcObjectStaticName), (FcObjectStaticNameFini):
Pull the FcObjectStateName hash table out to file scope, and add
FcObjectStaticNameFini so that FcFini will cleanup this hash table
as well.
* src/fcxml.c: (FcConfigParseAndLoad): Clear FILE* to NULL after
fclose.
2005-06-16 Patrick Lam <plam@MIT.EDU>
reviewed by: keithp
* src/fccfg.c: (FcConfigCompareValue):
Make FcOpNotContains use FcStrStr for strings so that
it matches semantics for !FcOpContains.
2005-05-20 Keith Packard <keithp@keithp.com>
* debian/changelog:
* debian/control:
Move fontconfig source package to libs as per override
2005-05-20 Aiet Kolkhi <aietkolkhi@gmail.com>
reviewed by: Mike Fabian
* fc-lang/ka.orth:
The ka.orth file requires several characters which are not
used anymore in modern Georgian and which are missing in the free
Georgian TrueType fonts downloadable at:
http://aiet.qartuli.net/docs/georgian_on_linux_en.php
2005-04-27 Keith Packard <keithp@keithp.com>
* README:
* debian/changelog:
Update date to real 2.3.2 release date.
Fix change attributions
2005-04-27 Keith Packard <keithp@keithp.com>
* configure.in:
Bump so revision for 2.3.2
* fc-cache/fc-cache.c: (scanDirs):
Fix a few minor leaks in error cases.
2005-04-23 Keith Packard <keithp@keithp.com>
* README:
* configure.in:
* debian/changelog:
* fontconfig/fontconfig.h:
Update for version 2.3.2
2005-04-21 Keith Packard <keithp@keithp.com>
* debian/fontconfig.postinst:
Don't force bitmap font enable in default
configuration; allows users to override this in
~/.fonts.conf
* debian/po/cs.po:
* debian/po/da.po:
* debian/po/de.po:
* debian/po/es.po:
* debian/po/fr.po:
* debian/po/ja.po:
* debian/po/nl.po:
* debian/po/pt.po:
* debian/po/pt_BR.po:
* debian/po/templates.pot:
* debian/po/tr.po:
* debian/po/zh_CN.po:
Updated translations
* fc-cache/fc-cache.c: (main):
Destroy font configuration on exit to help valgrind
* fonts.conf.in:
* src/fcfreetype.c: (FcSfntNameTranscode), (FcFreeTypeCharIndex),
(FcFreeTypeCheckGlyph):
Use own transcoding routines in preference to iconv
which appears to have leaks in some translators.
Call iconv_close after using iconv (oops).
Prefer unicode encoding of Euro char as some
fonts mis-encode Euro in other ones.
Must fetch bitmap glyphs to get width values
to check for monospace/dual-width fonts.
2005-04-13 Ross Burton <ross@burtonini.com>
* src/fcpat.c:
Check that a pattern isn't already frozen in FcPatternFreeze.
2005-03-31 Ross Burton <ross@burtonini.com>
* src/fclist.c:
* src/fcmatch.c:
* src/fcpat.c:
Run all FcPattern objects through FcObjectStaticName, so that
compares can be done on pointers instead of strings (#2659)
2005-03-17 Tor Lillqvist <tml@novell.com>
* src/fontconfig.def.in: Add the .dll to the dll name.
2005-03-10 Keith Packard <keithp@keithp.com>
* debian/README.Debian:
Update to reflect configuration changes
* debian/changelog:
* debian/fontconfig.postinst:
Fix Autohint vs Autohinter mistake
* debian/fontconfig.templates:
Adopt changes from Josselin Mouette for configuration descriptions
Update debian to version 2.3.1-2
2005-03-08 Keith Packard <keithp@keithp.com>
* debian/changelog:
* debian/rules:
Update debian for 2.3.1
2005-03-09 Tor Lillqvist <tml@novell.com>
* fontconfig-zip.in: Get the DLL from "bin" where modern libtools
put it, not "lib".
* src/fccfg.c (FcConfigFileExists): Check also drive letter
prefix on Win32.
2005-03-08 Keith Packard <keithp@keithp.com>
* README:
* configure.in:
* fontconfig/fontconfig.h:
Update for 2.3.1
2005-03-05 Keith Packard <keithp@keithp.com>
* src/fcfreetype.c: (addtag), (FcFontCapabilities):
Include space and remove numbers from valid script tags.
This ensures that tags like 'lao ' work while rejecting
those which have any digits.
Eliminate a spurious debugging variable (len)
2005-03-05 Keith Packard <keithp@keithp.com>
* src/fcfreetype.c: (addtag), (GetScriptTags),
(FcFontCapabilities):
Rework GSUB/GPOS script parsing to survive broken fonts.
Thanks for the broken font go to Manish Singh
2005-03-05 Keith Packard <keithp@keithp.com>
Josselin Mouette:
* debian/changelog:
* debian/control:
* debian/fontconfig.config:
* debian/fontconfig.templates:
* debian/rules:
Include 2.3 release information in changelog
Add Josselin Mouette as an Uploader
Set hinting_type to low priority configuration option
Manish Singh:
* debian/fontconfig.postinst:
yes_bitmaps.conf -> yes-bitmaps.conf
Funda Wang:
* src/fcfreetype.c:
Johap -> Johab
2005-03-02 Keith Packard <keithp@keithp.com>
* Makefile.am:
* conf.d/Makefile.am:
* conf.d/autohint.conf:
* conf.d/no-sub-pixel.conf:
* conf.d/sub-pixel.conf:
* conf.d/unhinted.conf:
* debian/autohint.conf:
* debian/fontconfig.install:
* debian/fontconfig.postinst:
* debian/fontconfig.templates:
* debian/no-sub-pixel.conf:
* debian/unhinted.conf:
Move debian-specific conf file examples upstream.
Sub-pixel configuration examples must smash subpixel value
as Xft always sets it from X.
Change sub-pixel rendering debconf descriptions from
Enable/Disable to Always/Never.
2005-03-02 Keith Packard <keithp@keithp.com>
* .cvsignore:
* conf.d/.cvsignore:
* doc/.cvsignore:
Ignore more build detritus
* Makefile.am:
Add debian package construction stuff.
* config/config.guess:
* config/config.sub:
Update to newer versions of these tools
* doc/Makefile.am:
Get library manuals to build again (we love automake).
* debian/README.Debian:
* debian/autohint.conf:
* debian/changelog:
* debian/compat:
* debian/control:
* debian/copyright:
* debian/fontconfig-udeb.install:
* debian/fontconfig.config:
* debian/fontconfig.defoma:
* debian/fontconfig.dirs:
* debian/fontconfig.install:
* debian/fontconfig.postinst:
* debian/fontconfig.postrm:
* debian/fontconfig.templates:
* debian/libfontconfig1-dev.install:
* debian/libfontconfig1.install:
* debian/local.conf.md5sum:
* debian/no-sub-pixel.conf:
* debian/po/POTFILES.in:
* debian/po/cs.po:
* debian/po/da.po:
* debian/po/de.po:
* debian/po/es.po:
* debian/po/fr.po:
* debian/po/ja.po:
* debian/po/nl.po:
* debian/po/pt.po:
* debian/po/pt_BR.po:
* debian/po/templates.pot:
* debian/po/tr.po:
* debian/po/zh_CN.po:
* debian/rules:
* debian/unhinted.conf:
Update debian build system to switch maintainers and
deal with 2.3 functionality
2005-03-01 Keith Packard <keithp@keithp.com>
* README:
* configure.in:
* fontconfig/fontconfig.h:
Update for 2.3.0
2005-03-01 Keith Packard <keithp@keithp.com>
* doc/Makefile.am:
Generate and install PDF versions of the manuals
* doc/fcpattern.fncs:
Fix formatting
* doc/fcstring.fncs:
Add missing exported functions, fix data types
* doc/fontconfig-devel.sgml:
Add missing pattern elements.
* doc/fontconfig-user.sgml:
Add missing pattern elements. Document conf.d usage,
clarify available orthography list. Fix some config file
attributes. Complete list of constants.
* fontconfig/fontconfig.h:
Mark FC_SOURCE deprecated.
* src/fcfreetype.c: (FcFreeTypeQuery):
Don't set FC_SOURCE any longer.
2005-02-28 Keith Packard <keithp@keithp.com>
* Makefile.am:
* conf.d/Makefile.am:
* conf.d/README:
* conf.d/no-bitmaps.conf:
* conf.d/sub-pixel.conf:
* conf.d/yes-bitmaps.conf:
* configure.in:
Create prototype /etc/fonts/conf.d directory with a few
sample configuration files.
Deprecate use of local.conf for local customizations in favor of
this directory based scheme which is more easily integrated into
installation systems.
* src/fcname.c:
Tag FC_EMBOLDEN as a boolean variable
2005-02-10 Keith Packard <keithp@keithp.com>
reviewed by: pborelli@katamail.com
* src/fcdir.c: (FcFileScanConfig):
Free patterns from fonts which are rejected by configuration
(bug #2518)
2005-01-28 Keith Packard <keithp@keithp.com>
* README:
* configure.in:
* fontconfig/fontconfig.h:
Update for version 2.2.99
2005-01-28 Keith Packard <keithp@keithp.com>
* README:
Add a few pointers (#2284, #2285)
2005-01-28 Keith Packard <keithp@keithp.com>
* src/fcint.h:
* src/fcname.c: (FcNameBool):
* src/fcxml.c: (FcTypeName), (FcTypecheckValue), (FcTypecheckExpr),
(FcTestCreate), (FcEditCreate), (FcConfigLexBool), (FcParseBool),
(FcParseAlias), (FcParseInclude), (FcParseTest), (FcParseEdit):
Polite typechecking for test and edit expressions. Helps
catch errors in the font configuration. (bug 229)
2005-01-15 Alan Coopersmith <alan.coopersmith@sun.com>
reviewed by: Keith Packard <keithp@keithp.com>
* configure.in:
Have --with-expat set EXPAT_CFLAGS (bug 2278)
2005-01-13 Keith Packard <keithp@keithp.com>
* doc/fontconfig-user.sgml:
Add SEE ALSO section (bug 2085)
2005-01-13 J. Ali Harlow <ali@juiblex.co.uk>
reviewed by: Keith Packard <keithp@keithp.com>
* Makefile.am:
* configure.in:
* doc/Makefile.am:
* fc-case/Makefile.am:
* fc-glyphname/Makefile.am:
* fc-lang/Makefile.am:
* src/fontconfig.def.in:
Cross compiling fixes (bug 280)
2005-01-13 Keith Packard <keithp@keithp.com>
* fonts.conf.in:
Update blanks list (Closes bug 86)
2005-01-04 Keith Packard <keithp@keithp.com>
* src/fccache.c: (FcCacheFontSetAdd):
Verify that every font pattern loaded from cache has
both FC_FILE and FC_FAMILY entries.
Attempt to fix bug #2219.
2004-12-29 Keith Packard <keithp@keithp.com>
* README:
* configure.in:
* fontconfig/fontconfig.h:
Update for version 2.2.98
2004-12-29 Keith Packard <keithp@keithp.com>
* fontconfig/fontconfig.h:
Document ASCII limitations of Fc character conversion macros
* src/fcstr.c: (FcStrCaseWalkerLong), (FcStrDowncase):
Fix off-by-one error in utf-8 case walking code.
Add FcStrDowncase (useful for testing case conversion functions)
2004-12-29 Keith Packard <keithp@keithp.com>
* .cvsignore:
* fc-case/.cvsignore:
clean up CVS ignore lists
* fc-lang/iso-3166.txt:
Add territory database
2004-12-29 Tor Andersson <tor.andersson@gmail.com>
Reviewed by: Keith Packard
* fc-lang/ko.orth:
Remove Han characters from Korean orthography
2004-12-29 Keith Packard <keithp@keithp.com>
* Makefile.am:
Reorder utility programs to make sure fc-case is run before fc-lang
as fc-lang uses fcstr.c which uses fccase.h
* fonts.conf.in:
Fix broken XML
2004-12-29 Keith Packard <keithp@keithp.com>
* fonts.conf.in:
Adopt some RedHat suggestions for standard font configuration.
* Makefile.am:
* configure.in:
* fc-case/CaseFolding.txt:
* fc-case/Makefile.am:
* fc-case/fc-case.c: (panic), (addFold), (ucs4_to_utf8),
(utf8_size), (addChar), (foldExtends), (case_fold_method_name),
(dump), (parseRaw), (caseFoldReadRaw), (main):
* fc-case/fccase.tmpl.h:
Add new helper program 'fc-case' to construct case folding
tables from standard Unicode CaseFolding.txt file
* src/fcint.h:
* src/fclist.c: (FcListValueHash):
* src/fcstr.c: (FcStrCaseWalkerInit), (FcStrCaseWalkerLong),
(FcStrCaseWalkerNext), (FcStrCaseWalkerNextIgnoreBlanks),
(FcStrCmpIgnoreCase), (FcStrCmpIgnoreBlanksAndCase),
(FcStrHashIgnoreCase), (FcStrIsAtIgnoreBlanksAndCase),
(FcStrIsAtIgnoreCase), (FcStrStrIgnoreCase):
Re-implement case insensitive functions with Unicode
aware versions (including full case folding mappings)
2004-12-13 Keith Packard <keithp@keithp.com>
reviewed by: Owen Taylor <otaylor@redhat.com>
* src/fcmatch.c: (FcFontSetSort):
I changed FcFontSetSort to respect the generic aliases better
in the face of language matching.
What I did was to ammend the strict sort order used by FcFontSort so
that it 'satisfies' the language specified in the pattern by locating
the best matching font supporting each pattern language and then
ignores language in the remaining fonts for purposes of matching.
So, when asking for 'sans:lang=en', you'll get an English font first,
and then the remaining fonts sorted with respect to the 'sans' alias
alone -- pushing Kochi fonts ahead of other English-supporting Han fonts.
2004-12-10 Jakub Pavelek <jakub.pavelek@nokia.com>
reviewed by: Keith Packard <keithp@keithp.com>
* fontconfig/fontconfig.h:
* fonts.conf.in:
Configuration changes to request synthetic emboldening of
fonts. The actual emboldening code will live in Xft.
2004-12-09 John Thacker <thacker@math.cornell.edu>
reviewed by: Keith Packard <keithp@keithp.com>
* fc-lang/ru.orth:
Currently Russian (ru) requires 0406 and 0456 (І and і), but these
were eliminated in Russian in 1918 in favor of 0418 and 0438 (И and
и), and don't even appear in KOI8-R. (The hypothesis that they
don't appear in KOI8-R due to their similarity with Latin I and i is
eliminated by their presence in KOI8-U.) I have a couple of fonts
with Russian support that don't have the letter.
Therefore, 0406 and 0456 should be removed from or commented out of
ru.orth
2004-12-06 michael meeks <mmeeks@novell.com>
Reviewed by: Keith Packard <keithp@keithp.com>
* src/fcinit.c: (FcMemReport):
* src/fcint.h:
* src/fclist.c: (FcObjectSetAdd):
* src/fcpat.c: (FcValueListEntCreate), (FcPatternBaseFreeze),
(FcPatternInsertElt), (FcPatternEqual), (FcObjectStaticName):
* src/fcxml.c: (FcParsePatelt):
memoize strings and share a single copy for all uses. Note that
this could be improved further by using statically allocated blocks
and gluing multiple strings together, but I'm basically lazy.
In my environment with 800 font files, I get a savings of about 90KB.
2004-12-06 Keith Packard <keithp@keithp.com>
* COPYING:
* Makefile.am:
* config/Makedefs.in:
* configure.in:
* doc/edit-sgml.c:
* doc/fcatomic.fncs:
* doc/fcblanks.fncs:
* doc/fccharset.fncs:
* doc/fcconfig.fncs:
* doc/fcconstant.fncs:
* doc/fcfile.fncs:
* doc/fcfontset.fncs:
* doc/fcfreetype.fncs:
* doc/fcinit.fncs:
* doc/fcmatrix.fncs:
* doc/fcobjectset.fncs:
* doc/fcobjecttype.fncs:
* doc/fcpattern.fncs:
* doc/fcstring.fncs:
* doc/fcstrset.fncs:
* doc/fcvalue.fncs:
* doc/fontconfig-devel.sgml:
* doc/fontconfig-user.sgml:
* doc/func.sgml:
* doc/version.sgml.in:
* fc-cache/Makefile.am:
* fc-cache/fc-cache.c:
* fc-glyphname/Makefile.am:
* fc-glyphname/fc-glyphname.c:
* fc-glyphname/fcglyphname.tmpl.h:
* fc-lang/Makefile.am:
* fc-lang/aa.orth:
* fc-lang/ab.orth:
* fc-lang/af.orth:
* fc-lang/am.orth:
* fc-lang/ar.orth:
* fc-lang/ast.orth:
* fc-lang/ava.orth:
* fc-lang/ay.orth:
* fc-lang/az.orth:
* fc-lang/az_ir.orth:
* fc-lang/ba.orth:
* fc-lang/bam.orth:
* fc-lang/be.orth:
* fc-lang/bg.orth:
* fc-lang/bh.orth:
* fc-lang/bho.orth:
* fc-lang/bi.orth:
* fc-lang/bin.orth:
* fc-lang/bn.orth:
* fc-lang/bo.orth:
* fc-lang/br.orth:
* fc-lang/bs.orth:
* fc-lang/bua.orth:
* fc-lang/ca.orth:
* fc-lang/ce.orth:
* fc-lang/ch.orth:
* fc-lang/chm.orth:
* fc-lang/chr.orth:
* fc-lang/co.orth:
* fc-lang/cs.orth:
* fc-lang/cu.orth:
* fc-lang/cv.orth:
* fc-lang/cy.orth:
* fc-lang/da.orth:
* fc-lang/de.orth:
* fc-lang/dz.orth:
* fc-lang/el.orth:
* fc-lang/en.orth:
* fc-lang/eo.orth:
* fc-lang/es.orth:
* fc-lang/et.orth:
* fc-lang/eu.orth:
* fc-lang/fa.orth:
* fc-lang/fc-lang.c:
* fc-lang/fc-lang.man:
* fc-lang/fclang.tmpl.h:
* fc-lang/fi.orth:
* fc-lang/fj.orth:
* fc-lang/fo.orth:
* fc-lang/fr.orth:
* fc-lang/ful.orth:
* fc-lang/fur.orth:
* fc-lang/fy.orth:
* fc-lang/ga.orth:
* fc-lang/gd.orth:
* fc-lang/gez.orth:
* fc-lang/gl.orth:
* fc-lang/gn.orth:
* fc-lang/gu.orth:
* fc-lang/gv.orth:
* fc-lang/ha.orth:
* fc-lang/haw.orth:
* fc-lang/he.orth:
* fc-lang/hi.orth:
* fc-lang/ho.orth:
* fc-lang/hr.orth:
* fc-lang/hu.orth:
* fc-lang/hy.orth:
* fc-lang/ia.orth:
* fc-lang/ibo.orth:
* fc-lang/id.orth:
* fc-lang/ie.orth:
* fc-lang/ik.orth:
* fc-lang/io.orth:
* fc-lang/is.orth:
* fc-lang/iso639-2:
* fc-lang/it.orth:
* fc-lang/iu.orth:
* fc-lang/ja.orth:
* fc-lang/ka.orth:
* fc-lang/kaa.orth:
* fc-lang/ki.orth:
* fc-lang/kk.orth:
* fc-lang/kl.orth:
* fc-lang/km.orth:
* fc-lang/kn.orth:
* fc-lang/ko.orth:
* fc-lang/kok.orth:
* fc-lang/ks.orth:
* fc-lang/ku.orth:
* fc-lang/ku_ir.orth:
* fc-lang/kum.orth:
* fc-lang/kv.orth:
* fc-lang/kw.orth:
* fc-lang/ky.orth:
* fc-lang/la.orth:
* fc-lang/lb.orth:
* fc-lang/lez.orth:
* fc-lang/lo.orth:
* fc-lang/lt.orth:
* fc-lang/lv.orth:
* fc-lang/mg.orth:
* fc-lang/mh.orth:
* fc-lang/mi.orth:
* fc-lang/mk.orth:
* fc-lang/ml.orth:
* fc-lang/mn.orth:
* fc-lang/mo.orth:
* fc-lang/mr.orth:
* fc-lang/mt.orth:
* fc-lang/my.orth:
* fc-lang/nb.orth:
* fc-lang/nds.orth:
* fc-lang/ne.orth:
* fc-lang/nl.orth:
* fc-lang/nn.orth:
* fc-lang/no.orth:
* fc-lang/ny.orth:
* fc-lang/oc.orth:
* fc-lang/om.orth:
* fc-lang/or.orth:
* fc-lang/os.orth:
* fc-lang/pl.orth:
* fc-lang/ps_af.orth:
* fc-lang/ps_pk.orth:
* fc-lang/pt.orth:
* fc-lang/rm.orth:
* fc-lang/ro.orth:
* fc-lang/ru.orth:
* fc-lang/sa.orth:
* fc-lang/sah.orth:
* fc-lang/sco.orth:
* fc-lang/se.orth:
* fc-lang/sel.orth:
* fc-lang/sh.orth:
* fc-lang/si.orth:
* fc-lang/sk.orth:
* fc-lang/sl.orth:
* fc-lang/sm.orth:
* fc-lang/sma.orth:
* fc-lang/smj.orth:
* fc-lang/smn.orth:
* fc-lang/sms.orth:
* fc-lang/so.orth:
* fc-lang/sq.orth:
* fc-lang/sr.orth:
* fc-lang/sv.orth:
* fc-lang/sw.orth:
* fc-lang/syr.orth:
* fc-lang/ta.orth:
* fc-lang/te.orth:
* fc-lang/tg.orth:
* fc-lang/th.orth:
* fc-lang/ti_er.orth:
* fc-lang/ti_et.orth:
* fc-lang/tig.orth:
* fc-lang/tk.orth:
* fc-lang/tl.orth:
* fc-lang/tn.orth:
* fc-lang/to.orth:
* fc-lang/tr.orth:
* fc-lang/ts.orth:
* fc-lang/tt.orth:
* fc-lang/tw.orth:
* fc-lang/tyv.orth:
* fc-lang/ug.orth:
* fc-lang/uk.orth:
* fc-lang/ur.orth:
* fc-lang/uz.orth:
* fc-lang/ven.orth:
* fc-lang/vi.orth:
* fc-lang/vo.orth:
* fc-lang/vot.orth:
* fc-lang/wa.orth:
* fc-lang/wen.orth:
* fc-lang/wo.orth:
* fc-lang/xh.orth:
* fc-lang/yap.orth:
* fc-lang/yi.orth:
* fc-lang/yo.orth:
* fc-lang/zh_cn.orth:
* fc-lang/zh_hk.orth:
* fc-lang/zh_mo.orth:
* fc-lang/zh_sg.orth:
* fc-lang/zh_tw.orth:
* fc-lang/zu.orth:
* fc-list/Makefile.am:
* fc-list/fc-list.c:
* fc-match/Makefile.am:
* fc-match/fc-match.1:
* fc-match/fc-match.c:
* fontconfig/fcfreetype.h:
* fontconfig/fcprivate.h:
* fontconfig/fontconfig.h:
* src/fcatomic.c:
* src/fcblanks.c:
* src/fccache.c:
* src/fccfg.c:
* src/fccharset.c:
* src/fcdbg.c:
* src/fcdefault.c:
* src/fcdir.c:
* src/fcfreetype.c:
* src/fcfs.c:
* src/fcinit.c:
* src/fcint.h:
* src/fclang.c:
* src/fclist.c:
* src/fcmatch.c:
* src/fcmatrix.c:
* src/fcname.c:
* src/fcpat.c:
* src/fcstr.c:
* src/fcxml.c:
Change files from ISO-Latin-1 to UTF-8
2004-12-04 Keith Packard <keithp@keithp.com>
* INSTALL:
Update links to new freedesktop.org locations
* Makefile.am:
Add uninstall-local to get rid of fonts.conf and local.conf if they
match the distributed versions. Fixes 'make distcheck'
2004-12-04 Keith Packard <keithp@keithp.com>
* README:
* configure.in:
* fontconfig/fontconfig.h:
Updates for version 2.2.97
2004-12-04 Owen Taylor <otaylor@redhat.com>
reviewed by: Keith Packard <keithp@keithp.com>
* fc-cache/fc-cache.c: (main):
Sleep for two seconds before exiting to make sure timestamps
for future changes have distinct mod times in the file system.
Bug #1982.
* fc-lang/pa.orth:
Add Punjabi orthography. Bug #1671.
2004-12-04 Keith Packard <keithp@keithp.com>
* fonts.conf.in:
Just remove the FC_FONTDATE -- it has locale issues and
annoys redhat multi-arch installs. Now that all X fonts are
included without prejudice, the chances of the date being at
all interesting are rather limited. Bug #505.
* src/Makefile.am:
Add copyright and license
2004-12-04 Keith Packard <keithp@keithp.com>
* configure.in:
Change default set of fonts to include all of
/usr/X11R6/lib/X11/fonts (or wherever the X fonts are located).
* doc/fontconfig-user.sgml:
Document new <include>directory-name</include> semantics
* fonts.conf.in:
add <include ignore_missing="yes">conf.d</include>
* local.conf:
Add selectfont to ignore bitmap fonts, add comment for
selectfont which accepts bitmap fonts.
* src/fcdir.c:
* src/fcint.h:
* src/fcxml.c: (FcConfigParseAndLoadDir), (FcConfigParseAndLoad):
Allow <include> configuration elements to reference directories.
Parse and load all files of the form [0-9]* in sorted order.
2004-12-04 Keith Packard <keithp@keithp.com>
* autogen.sh:
Report command line for $srcdir/configure accurately.
Bug #212.
2004-12-04 Keith Packard <keithp@keithp.com>
* src/fcfreetype.c: (FcFreeTypeQuery):
Check for non-empty face->family_name and face->style_name
before using those for the font. Empty names match everything.
Bug #210.
2004-12-04 Keith Packard <keithp@keithp.com>
* configure.in:
* fontconfig/fontconfig.h:
* src/fcfreetype.c: (FcFreeTypeQuery):
* src/fcname.c:
Create FC_FONTFORMAT from FT_Get_X11_Font_Format function where
available. This provides font file format information (BDF, Type 1,
PCF, TrueType) for each font. Closes #109.
2004-12-04 Daniel Glassey <danglassey@ntlworld.com>
reviewed by: Keith Packard <keithp@keithp.com>
* doc/fontconfig-user.sgml:
Fix typo.
* fontconfig/fontconfig.h:
* src/fcfreetype.c: (FcFreeTypeQuery), (addtag), (compareulong),
(GetScriptTags), (FcFontCapabilities):
* src/fcname.c:
Add detection for font capabilities (bug #105)
2004-12-04 Keith Packard <keithp@keithp.com>
* Makefile.am:
Move existing fonts.conf to fonts.conf.bak
* configure.in:
Add detection of iconv
* doc/fcpattern.fncs:
* doc/fontconfig-devel.sgml:
* doc/fontconfig-user.sgml:
* fonts.dtd:
Document new selectfont elements
* fc-lang/nb.orth:
Switch to UTF-8 in comment
* fontconfig/fontconfig.h:
* src/fcname.c:
Add fullname, and family/style/fullname language entries
* src/fccache.c: (FcCacheFontSetAdd):
* src/fcdir.c: (FcFileScanConfig):
Respect selectfont/*/glob
* src/fcint.h:
* src/fccfg.c: (FcConfigCreate), (FcConfigDestroy),
(FcConfigCompareValue), (FcConfigPatternsAdd),
(FcConfigPatternsMatch), (FcConfigAcceptFont):
* src/fcxml.c: (FcElementMap), (FcVStackDestroy),
(FcVStackPushPattern), (FcPopExpr), (FcParseAcceptRejectFont),
(FcPopValue), (FcParsePatelt), (FcParsePattern), (FcEndElement):
Add support for selectfont
* src/fcfreetype.c: (FcSfntNameTranscode), (FcSfntNameLanguage),
(FcStringInPatternElement), (FcFreeTypeQuery):
Add multi-lingual family/style/fullname support
* src/fclist.c: (FcListPatternMatchAny):
Expose FcListPatternMatchAny (which selectfont/*/pattern uses)
* src/fcpat.c: (FcPatternRemove), (FcPatternAppend),
(FcObjectStaticName):
Add new FcPatternRemove/FcPatternAppend.
FcObjectStaticName stores computed pattern element names which
are required to be static.
2004-09-09 "NAKAMURA Ken'ichi" <nakamura@sbp.fp.a.u-tokyo.ac.jp>
reviewed by: keithp
* Makefile.am:
Remove spurious / after $(DESTDIR)
2004-06-30 Keith Packard <keithp@keithp.com>
* README:
* configure.in:
* fontconfig/fontconfig.h:
Update for 2.2.96
2004-06-30 Keith Packard <keithp@keithp.com>
Provided by: Lubos Lunak <l.lunak@suse.cz>
* src/fccfg.c: (FcConfigUptoDate):
However FcConfigUptoDate() doesn't seem to work. See the attached
patch. First there's an obvious misplaced parenthesis making it
return always false, and second, even this call fails to detect font
changes (e.g. adding a new font to
/usr/X11R6/lib/X11/fonts/truetype). The patch should fix that as
well. The problem seems to be triggered by my fonts.conf specifying
only /usr/X11R6/lib/X11/fonts , and therefore config->configDirs
doesn't include subdirs, unlike config->fontDirs.
2004-06-03 Keith Packard <keithp@keithp.com>
* fontconfig/fontconfig.h:
Remove comma at end of FcResult enum definition.
2004-05-29 Keith Packard <keithp@keithp.com>
* INSTALL:
Add steps to md5sum release
2004-05-29 Keith Packard <keithp@keithp.com>
* README:
* configure.in:
* fontconfig/fontconfig.h:
Update for 2.2.95
2004-05-29 Keith Packard <keithp@keithp.com>
* fontconfig/fontconfig.h:
* src/fcmatch.c: (FcFontSetMatch):
Add FcResultOutOfMemory to provide an accurate error when
FcFontSetMatch fails in this way
* src/fcfreetype.c:
Make #warning about lacking various FreeType features indicate
which version those features appeared so users know how to
fix the problem (Thanks to Anton Tropashko)
2004-05-05 Keith Packard <keithp@keithp.com>
* src/fcfreetype.c: (FcFreeTypeCharSetAndSpacing):
Replace MIN/MAX/ABS macros which happen to have come
from FreeType with fontconfig-specific ones (FC_*)
2004-04-23 Keith Packard <keithp@keithp.com>
* INSTALL:
Extend release preparation instructions to include
notification and distribution steps
2004-04-23 Keith Packard <keithp@keithp.com>
* README:
* configure.in:
* fontconfig/fontconfig.h:
Update to 2.2.94 (2.2.93 shipped with broken libtool bits)
2004-04-23 Keith Packard <keithp@keithp.com>
* .cvsignore:
Ignore a few more autotool files
2004-04-14 Keith Packard <keithp@keithp.com>
* INSTALL:
Add instructions for doing a release
* fontconfig.spec.in:
clean up .spec file; perhaps this will be useful to somebody...
* README:
* configure.in:
* fontconfig/fontconfig.h:
Update to 2.2.93
* fc-lang/fc-lang.c:
Make 'scanopen' static so GCC doesn't whine about lacking prototype
* fc-glyphname/Makefile.am:
* fc-lang/Makefile.am:
* fc-list/Makefile.am:
* fc-match/Makefile.am:
* src/Makefile.am:
Add WARN_CFLAGS to pass -W flags for GCC systems
* src/fcfreetype.c: (FcNoticeFoundry), (FcVendorMatch),
(FcVendorFoundry), (FcGetPixelSize), (FcFreeTypeQuery):
Change various char types around to match across
function calls.
Fixed bug in using available_sizes[i].height which
is in pixels, not 64ths of a pixel.
2004-03-06 Keith Packard <keithp@keithp.com>
* src/fcfreetype.c: (FcFreeTypeQuery):
Force FC_FOUNDRY and FC_WIDTH to always be set so that
matches looking for explicit values prefer exact matches
2004-03-02 Keith Packard <keithp@keithp.com>
Supplied by: mfabian@suse.de (Mike FABIAN)
* src/fcfreetype.c: (FcFreeTypeQuery):
Bug #260 fc-cache generates wrong spacing values for bitmap fonts
Was using (strcmp (a,b)) instead of (!strcmp(a,b)).
2004-02-21 Manish Singh <yosh@gimp.org>
* fc-glyphname/fc-glyphname.c: (main):
Cast strlen to int for printf, so we're 64-bit clean.
2004-02-11 Keith Packard <keithp@keithp.com>
* configure.in:
* src/fcfreetype.c: (FcGetPixelSize):
Ok, so I messed up the test for y_ppem. Let's see if I
got it right this time.
2004-02-10 Keith Packard <keithp@keithp.com>
* configure.in:
* src/fcfreetype.c: (FcGetPixelSize):
Pre-2.1.5 versions of FreeType didn't include y_ppem in the
FT_Bitmap_Size record. Add a configure.in test for this
and change the code accordingly (using height instead).
2004-02-06 Keith Packard <keithp@keithp.com>
* fc-lang/nds.orth:
Add Low Saxon orthography
(Kenneth Rohde Christiansen <kenneth@gnu.org>)
* src/fccfg.c: (FcConfigNewestFile):
Oops. Left 'newest.set' unset, which would miscompute
the newest file
* src/fcfreetype.c: (FcGetPixelSize), (FcFreeTypeQuery),
(FcFreeTypeCheckGlyph):
Add FcGetPixelSize to extract correct pixel size from bdf/pcf
font properties (which report the wrong value in current FreeType)
Don't attempt to check for empty glyphs in non-scalable fonts; they
have no outlines...
2004-02-01 Tor Lillqvist <tml@iki.fi>
* src/fccfg.c (FcConfigCreate): fontconfig, at least as used by
GIMP and/or PangoFT2 on Windows, crashes when trying to save the
cache if config->cache is NULL, which happens if FcConfigHome() is
NULL. Guard against that by using the temp folder in that case.
2004-01-03 Roozbeh Pournader <roozbeh@sharif.edu>
* fc-lang/az_ir.orth:
* fc-lang/ku_ir.orth:
* fc-lang/ps_af.orth:
* fc-lang/ps_pk.orth:
Added orthographies for Iranian Azerbaijani and Kurdish, and Pashto
(Afghan and Pakistani).
* fc-lang/ur.orth:
Updated Urdu orthography with real data.
2003-12-11 Carl Worth <cworth@east.isi.edu>
* fc-list/Makefile.am (man_MANS): Move man_MANS into the 'if
USEDOCBOOK' block.
* fc-cache/Makefile.am (man_MANS): Move man_MANS into the 'if
USEDOCBOOK' block.
(all-local): Remove excessive whitespace.
* autogen.sh: Add 'set -e' to abort when any program fails,
(avoids printing of 'now type make' after configure aborts).
2003-11-17 Eric Christopherson <rakko@charter.net>
reviewed by: Keith Packard <keithp@keithp.com>
* doc/Makefile.am:
* fontconfig/fcfreetype.h:
* src/fcfreetype.c:
Switch to FreeType 2.1.7 style includes. Bug #150.
2003-11-16 Noah Levitt <nlevitt@columbia.edu>
* fc-list/fc-list.sgml: Add some example usages.
2003-11-10 Roozbeh Pournader <roozbeh@sharif.edu>
* src/fcxml.c:
Fixed a bug "FcStrtod" in handling some cases with two-byte decimal
separators.
2003-10-27 Keith Packard <keith@keithp.com>
* configure.in:
* fontconfig/fontconfig.h:
Update to version 2.2.92
2003-10-27 Keith Packard <keithp@keithp.com>
* Makefile.am:
* configure.in:
* doc/Makefile.am:
* fc-cache/Makefile.am:
* fc-glyphname/Makefile.am:
* fc-lang/Makefile.am:
* fc-list/Makefile.am:
* fc-match/Makefile.am:
* test/Makefile.am:
* test/run-test.sh:
Yet more cleanups to finish getting 'make distcheck' working
This has been tested to ensure that it even works from a _build
directory.
2003-10-26 Keith Packard <keithp@keithp.com>
* configure.in:
* doc/Makefile.am:
* fc-cache/Makefile.am:
* fc-glyphname/Makefile.am:
* fc-lang/Makefile.am:
* fc-lang/fc-lang.c: (scanopen), (scan), (main):
* fc-list/Makefile.am:
* fc-match/Makefile.am:
Attempts to fix 'make distcheck' work. Things are
progressing pretty well, but there are still failures
long into the process dealing with docs (as always).
The big changes here are mostly to make $(srcdir) != "."
work correctly, fixing the docbook related sections and
fc-lang were particularily tricky. Docbook refuses to load
system entities from anywhere other than where the original .sgml
file was located, so no luck looking in "." for the
configure-generated version.sgml and confdir.sgml files.
fc-lang needed help finding .orth files; added a -d option
to set the directory as the least evil of many options.
Now to go use a faster machine and try and wring out the last
issues.
2003-10-26 Keith Packard <keithp@keithp.com>
Tag version 2.2.91
2003-10-26 Keith Packard <keithp@keithp.com>
* doc/Makefile.am:
Include confdir.sgml.in in EXTRA_DIST
2003-10-09 Josselin Mouette <joss@debian.org>
* fc-cache/fc-cache.sgml fc-cache/Makefile.am:
* fc-list/fc-list.sgml fc-list/Makefile.am:
Replace fc-cache and fc-list manpages with more detailed, SGML
versions.
2003-09-23 Owen Taylor <otaylor@redhat.com>
* fontconfig/fontconfig.h src/fcdefault.c (FcDefaultSubstitute)
src/fcname.c: Add a FC_HINT_STYLE key for patterns, with
possible values HINT_NONE/HINT_SLIGHT/HINT_MEDIUM/HINT_FULL.
(Bug #117)
2003-09-23 Owen Taylor <otaylor@redhat.com>
* fc-lang/ka.orth: Remove Georgian capitals, they
aren't used for normal writing. (Bug #116)
2003-09-06 Noah Levitt <nlevitt@columbia.edu>
* doc/fontconfig-devel.sgml:
* doc/fontconfig-user.sgml:
* fontconfig/fontconfig.h:
* src/fcname.c:
* src/fcfreetype.c (FcFreeTypeCharSetAndSpacing): Add new spacing
value FC_DUAL (dual-width, as some CJK fonts). (bug #111)
* src/fcfreetype.c (FcFreeTypeCharSetAndSpacing): When checking for
monospace and dual-width fonts, allow roughly a 3% variance in the
advances.
2003-08-31 Manish Singh <yosh@gimp.org>
* src/fccfg.c (FcConfigAppFontClear): Support passing NULL to
use default config.
2003-08-15 Carl Worth <cworth@isi.edu>
* src/fcxml.c (FcEditDestroy): Fix leak of FcEdit.
(FcPopExpr): Add comment about unhandled FcVStackGlob case.
* src/fcpat.c (FcValueListEntDestroy): New function to support
FcFini memory cleanup. Some statistics are not kept in
synch. here.
(FcValueListFreeze): Move hashTable outside this function so it
can be accessed by FcValueListThawAll.
(FcValueListThawAll): New function complements FcValueListFreeze.
(FcPatternBaseFreeze): Move hashTable outside this function so it
can be accessed by FcPatternBaseThawAll.
(FcPatternBaseThawAll): New function complements
FcPatternBaseFreeze.
(FcPatternThawAll): New function complements FcPatternFreeze.
* src/fcinit.c (FcFini): Add new FcFini to cleanup everything.
* src/fccharset.c (FcCharLeafEntCreate): Save pointers to all
allocated FcCharLeafEnt "blocks" so they can be freed later.
(FcCharSetFreezeLeaf): Move hashTable outside this function so it
can be accessed by FcCharSetThawAllLeaf.
(FcCharSetThawAllLeaf): New function complements FcCharSetFreezeLeaf.
(FcCharSetFreezeBase): Move hashTable outside this function so it
can be accessed by FcCharSetThawAll.
(FcCharSetThawAll): New function complements FcCharSetFreeze.
* src/fccfg.c (FcSubstDestroy): Fix leak of outer FcSubst.
(FcConfigDestroy): Fic leak of FcBlanks.
* fc-list/fc-list.c (main): Fix leak of FcObjectSet.
(main): Add call to FcFini when finished.
* fc-glyphname/fc-glyphname.c: Mark several local functions as
static. Add prototypes.
* doc/fcinit.fncs: Add documentation for FcFini function.
* doc/edit-sgml.c: Mark several local functions as static. Add
prototypes.
* doc/Makefile.am (DOC_MODULE): Fix "suspicious" lines.
2003-06-15 Tor Lillqvist <tml@iki.fi>
* test/run-test.sh (FONTCONFIG_FILE): Remove CRs from the out file
before comparing (needed on Windows).
* src/Makefile.am (install-libtool-import-lib): Fix cut&paste error.
2003-06-13 Tor Lillqvist <tml@iki.fi>
* fontconfig-zip.in (DEVZIP): Add share/doc directory. Add Fc*.3
man pages.
* configure.in: Set FC_DEFAULT_FONTS on Win32 to the
WINDOWSFONTDIR token.
* src/fontconfig.def.in: Move the LIBRARY and VERSION lines to the
end, not to confuse libtool, which expects the EXPORTS line to be
the first. Add FcConfigEnableHome.
* src/fccfg.c: Check also for DLL_EXPORT as indication of being
built as a DLL on Win32.
2003-06-09 Keith Packard <keithp@keithp.com>
* Tag version 2.2.90
2003-06-09 Keith Packard <keithp@keithp.com>
* Optimization in FcLangSetIndex was broken, occasionally
returning a pointer to the wrong location on miss
* Add fc-match to test font matching from the command line.
2003-05-31 Keith Packard <keithp@keithp.com>
* (Bug 85) add support for culmus fonts
* (Bug 87) Automake 1.4 doesn't do man_MAN1 correctly
* (Bug 88) Fix usage info on non-long option systems (Tim Mooney)
2003-05-28 James Su <suzhe@turbolinux.com.cn>
* Fix "contains" op for strings and langsets.
2003-05-17 Keith Packard <keithp@keithp.com>
* Fix build error with BDF prop local. Free langset after query
2003-05-14 Keith Packard <keithp@keithp.com>
* Extract spacing from XLFD atom
2003-05-12 Juliusz Chroboczek <jch@pps.jussieu.fr>
* Reinstate SETWIDTH_NAME parsing for legacy fonts,
disappeared in 1.30.
* Generate FC_SIZE and FC_DPI for legacy bitmap fonts
2003-05-12 Keith Packard <keithp@keithp.com>
* Use FcIsWidth to share code
* Set FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH when scanning fonts to avoid
misclassifying some Han fonts as monospaced.
2003-05-07 Keith Packard <keithp@keithp.com>
* Add filename-based accept/reject to ammend available fonts.
* Change FT_ENCODING_ADOBE_CUSTOM to ft_encoding_adobe_custom for
older FreeType releases.
2003-05-06 Keith Packard <keithp@keithp.com>
* Remove 0b82 and Tamil numbers from tamil
orthography (Jungshik Shin <jshin@mailaps.org>)
2003-05-04 Keith Packard <keithp@keithp.com>
+ Map glyph names in fonts with adobe custom encoding to unicode
2003-05-02 Keith Packard <keithp@keithp.com>
* Add FC_WEIGHT_BOOK as weight 75
2003-04-30 Keith Packard <keithp@keithp.com>
* Typo in bitstream foundry name
2003-04-24 Keith Packard <keithp@keithp.com>
* Eliminate italic_angle check for PS fonts
2003-04-23 Noah Levitt <nlevitt@columbia.edu>
* Getting closer to fixing /etc/fonts hard-coding.
2003-04-22 Keith Packard <keithp@keithp.com>
* Update autogen.sh to work with newer automake versions
* Handle pattern elements moving during multiple edits
2003-04-23 James Henstridge <james@daa.com.au>
* doc/fontconfig-devel.sgml: close the <para> element.
* doc/fcpattern.fncs: close the <para> element.
* doc/func.sgml: close the <refsynopsisdiv> element.
2003-04-22 Keith Packard <keithp@keithp.com
* Update autogen.sh to work with newer automake versions
* Handle pattern elements moving during multiple edits
2003-04-17 Colin Walters <walters@debian.org>
+ Remove some unused variables, and initialize some other ones so
gcc doesn't warn us.
2003-04-16 Keith Packard <keithp@keithp.com>
+ tag version 2.1.94
2003-04-16 Keith Packard <keithp@keithp.com>
+ add BDF property fetching support for foundry
(from Juliusz Chroboczek)
+ add BDF property fetching support for width
2003-04-11 Juliusz Chroboczek <jch@pps.jussieu.fr>
+ Implemented foundry generation for Type 1 and TrueType
2003-04-11 Gerard Escalante <g2@magestudios.net>
+ Retrieve information from Type1 FontInfo dictionaries
2003-04-07 Colin Walters <walters@verbum.org>
+ src/Makefile.am: Fix dummy makefile target names when
MS_LIB_AVAILABLE isn't set.
2003-03-22 Tor Lillqvist <tml@iki.fi>
Changes for Windows:
+ On Windows with gcc (a.k.a. mingw) build as a DLL.
+ We don't want to hardcode the fonts.conf file location in the
DLL, so we look up the DLL location at run-time in a DllMain()
function. The fonts.conf location is deduced from that.
+ The colon can't be used as path separator on Windows,
semicolon is used instead. File path components can be separated
with either slash or backslash. Absolute paths can also begin
with a drive letter.
+ Add internal function FcStrLastSlash that strrchr's the last
slash, or backslash on Windows.
+ There is no link() on Windows. For atomicity checks, mkdir a
lock directory instead.
+ In addition to HOME, also look for USERPROFILE.
+ Recognize the special font directory token WINDOWSFONTDIR, to
use the system's font directory.
+ Remove the fontconfig-def.cpp that was obsolete. Add
fontconfig.def(.in), without internal functions.
+ Add a fontconfig-zip(.in) script, used to build a binary
distribution.
Fri Mar 7 07:55:00 EST 2003 Mike A. Harris <mharris@redhat.com>
+ RPM specfile cleanups for 2.1.92: Removed man1/* and added man5/*
to main package and man3/* to devel package
+ Added missing defattr(-, root, root) to main RPM package
+ Added HTML and text development documentation to -devel subpackage
Wed Mar 5 05:08:00 EST 2003 Mike A. Harris <mharris@redhat.com>
+ Added back the configure macro options --disable-docs, otherwise
fontconfig installs docs into /usr/share/doc/fontconfig (with no
version number) unconditionally, causing RPM to fail the build due
to _unpackaged_files_terminate_build. We pick up the pregenerated
docs with %doc already.
Wed Mar 5 04:26:20 EST 2003 Mike A. Harris <mharris@redhat.com>
+ Removed commented out rpm macro define at top of spec file,
replacing it with a simple explanation, since rpm macros are
expanded by rpm even in comments.
+ Changed /usr/bin to _bindir in BuildRequires lines
+ Cleaned up rpm postinstall script, and made fc-cache use _bindir
+ Reorganized file manifest lists
Sun Mar 2 14:16:17 EST 2003 Owen Taylor <otaylor@redhat.com>
+ fontconfig.spec.in: Improvements from Red Hat spec file.
+ {fc-lang,fc-cache,fc-list}/Makefile.am: Add man pages.
+ docs/*.sgml: SGML fixes.
Sat Mar 1 17:28:53 PST 2003 keithp
+ Ok, so the ChangeLog is a bit out of date
+ Lots of bugs fixed; most are in bugzilla, the
biggest problems were in cache management where
Owen discovered the library would lose badly when
combining fonts-cache and ~/.fonts-cache data
+ Converted from autoconf to automake. This after
getting patches accepted into libtool to allow
the '-version-number' argument which lets
packages set version numbers explicitly rather
than the roundabout libtool way
+ Converted documentation to SGML using the docbook
DTD. Now .txt and .html documents are installed
in /usr/share/doc/fontconfig and there's no
man page. Perhaps a man version can be written
at some point.
Sat Aug 31 15:21:22 PDT 2002 keithp
+ Xrender and Xft had several bugs related to
rendering manually placed or poly-face text
+ Added more complete memory tracing in fontconfig
Checked with (patched) mozilla and found no leaks
+ Updated Latin orthographies by comparing those from
evertype.com with those from eki.ee. Tried to make
sensible choices, including chars that occured in both
and leaving some optional chars out that occured only
in one.
Mon Aug 26 16:33:04 PDT 2002 keithp
+ Owen discovered that FcLangSetHasLang wasn't actually
checking the language set.
Mon Aug 26 13:37:23 PDT 2002 keithp
+ Append a version number to cache filenames
Thu Aug 22 11:36:18 PDT 2002 keithp
+ Add "contains" and "not_contains" operators and elements to
font configuration
+ Changed semantics of eq operator for LangSets to check for
FcLangEqual so that any match will do
+ FcFontList was using FcConfigCompareValue (...FcOpEqual) instead
of FcValueEqual to check for identical values when inserting into
the results. This broke when the above semantic change was made,
now it uses FcValueEqual which is "more correct" in any case.
Thu Aug 22 00:32:29 PDT 2002 keithp
+ Reimplement FC_LANG as new datatype. Lists of strings
was consuming over a megabyte of memory for 401 fonts.
+ Freeze patterns loaded from cache files. This shares
common value lists and common patterns which saves
considerable memory.
+ Change the denotation of 'constant' charsets to use special
ref value instead of separate boolean.
+ Clean up leak tracing stuff, found several unannoted alloc/free
calls
Tue Aug 20 16:17:37 PDT 2002 keithp
+ Fix memory leak when parsing matrices from XML
Mon Aug 19 11:57:27 PDT 2002 keithp
+ Fix autoconf files to pass FONTCONFIG_PATH on
compile line so that ${prefix} gets substituted
correctly.
+ Use getc_unlocked/putc_unlocked on systems that
provide them to avoid damage done to stdio by posix
+ Eliminate FC_PATTERN and FcTypePattern in favor of
an extended api for FcConfigSubstitute which takes
both the font and the pattern.
+ Add 'sans serif' alias for 'sans-serif' as some apps
can't handle hyphens in family names
+ Eliminate pretense of support for libxml2
+ Comment origins of Han orthographies
Tue Jul 30 18:37:09 PDT 2002 keithp
+ Add binding property to edit element so that strong
binding values may be inserted by the config file.
The default remains weak.
Sun 28 Jul 04:16:55 PDT 2002 keithp
+ Tagged release candidate 1 in the CVS tree and
placed fcpackage.rc1.tar.gz for distribution
Thu Aug 1 08:55:08 PDT 2002 keithp
+ Fixed autoconf builds to always specify install
target files (for BSD). Also fixed to
define FONTCONFIG_PATH in config.h so that
nonstandard installs will actually work.
|