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