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