commit 0dffe625d43c1165f8b84f97e8ba098793e2cf7b Author: Keith Packard Date: Thu Jan 10 10:58:25 2008 -0800 Bump version to 2.5.91 README | 26 ++++++++++++++++++++++---- configure.in | 2 +- fontconfig/fontconfig.h | 2 +- 3 files changed, 24 insertions(+), 6 deletions(-) commit b2cbf483ab520ff21ca2152f960498d181613608 Author: Keith Packard Date: Thu Jan 10 10:58:22 2008 -0800 git-tag requires space after -m flag new-version.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 51f1536479064c2d224860c15271a9b14c87fd62 Author: Keith Packard Date: Thu Jan 10 10:56:52 2008 -0800 new-version.sh was mis-editing files new-version.sh | 19 ++++++++----------- 1 files changed, 8 insertions(+), 11 deletions(-) commit 554dc2e7b7e3c1cb6409d0cd786cfbea480fcf69 Author: Keith Packard Date: Thu Jan 10 10:48:00 2008 -0800 Add more files to .gitignore .gitignore | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) commit 94d4f51d854f33b158e7eef2df75a5b21e95fb27 Author: Keith Packard Date: Thu Jan 10 10:43:33 2008 -0800 Distribute khmer font aliases conf.d/65-khmer.conf | 16 ++++++++++++++++ conf.d/Makefile.am | 1 + 2 files changed, 17 insertions(+), 0 deletions(-) commit fba7c37f98658e3ee94bb454868885b7f3a8ec5e Author: Keith Packard Date: Thu Jan 10 10:40:41 2008 -0800 Create new-version.sh to help with releases, update INSTALL instructions INSTALL | 36 +++++------------ new-version.sh | 121 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 131 insertions(+), 26 deletions(-) commit ad43ccaafa4f987b982afa2fff07ee8003c51a81 Author: Keith Packard Date: Thu Jan 10 08:58:57 2008 -0800 Distribute new fcftint.h file src/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 32fed4572754c2d484cd1605ff273c3fbfbd09bb Author: Keith Packard Date: Tue Jan 8 12:34:19 2008 -0800 Eliminate references to freetype from utility Makefile.am's The utility programs don't use any freetype interfaces, so they don't need to directly refer to freetype headers or libraries. fc-cache/Makefile.am | 4 ++-- fc-cat/Makefile.am | 4 ++-- fc-list/Makefile.am | 4 ++-- fc-match/Makefile.am | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) commit a0a1da22a4a8e66e47e2ec8ac0515741b8ad7a7f Author: Keith Packard Date: Mon Jan 7 16:31:06 2008 -0800 Include fcftaliastail.h so that the freetype funcs are exported. This header file needs to be included at the end of every file that exports any freetype symbols. src/fcfreetype.c | 1 + src/fclang.c | 1 + src/fcpat.c | 1 + 3 files changed, 3 insertions(+), 0 deletions(-) commit dbd065ad312921308add99fc4cb31457d9045e6a Author: Keith Packard Date: Wed Jan 2 08:47:14 2008 -0800 Remove freetype requirement for build-time applications. This avoids requiring the freetype development files when cross compiling fc-arch/Makefile.am | 2 +- fc-case/Makefile.am | 2 +- fc-glyphname/Makefile.am | 2 +- fc-lang/Makefile.am | 2 +- src/Makefile.am | 13 ++++++++-- src/fcfreetype.c | 1 + src/fcftint.h | 54 ++++++++++++++++++++++++++++++++++++++++++++++ src/fcint.h | 18 +-------------- src/fclang.c | 1 + src/fcpat.c | 1 + src/makealias | 6 +++- 11 files changed, 76 insertions(+), 26 deletions(-) commit 0aa5fbaa0df9d6c7bee8e0839dd443de9c48a402 Author: Keith Packard Date: Sun Dec 23 14:06:41 2007 -0800 Fix OOM failure case in FcPStackPush. When allocation for the node attributes fail, clean up the node allocation and report failure. src/fcxml.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) commit 0f7870887adff6db3cffda5485418143f2bfa1f6 Author: Hongbo Zhao Date: Wed Dec 12 21:47:33 2007 -0800 Not_contain should use strstr, not strcmp on strings. (bug 13632) For Version 2.5.0, (same for previous version 2.4.2), in source file fccfg.c, on line 700, Original: ret = FcStrCmpIgnoreCase (left.u.s, right.u.s) == 0; Should change to: ret = FcStrStrIgnoreCase (left.u.s, right.u.s) == 0; I think this is just a mistake when copy-n-paste similar codes in the same function. Apparently, return for "Not_contain" should be just the inverse of "Contain", not the same as "Equal". src/fccfg.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 6e5d2cb931f11f0aba8d187e49ddc7cc92a5be85 Author: Keith Packard Date: Sun Nov 25 16:35:55 2007 -0800 Move conf.avail/README to conf.d/README (bug 13392) Because conf.d is where most people look first. And the comment at the top of the README file says conf.d/README too. conf.d/Makefile.am | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-)