[Fontconfig] fontconfig: Branch 'master' - 2 commits
Keith Packard
keithp at kemper.freedesktop.org
Mon Nov 5 16:11:17 PST 2007
README | 49 ++++++++++++++++++++++++++++++++++++++++++++++--
doc/Makefile.am | 8 ++++---
fontconfig/fontconfig.h | 2 -
3 files changed, 53 insertions(+), 6 deletions(-)
New commits:
commit ed7955a58f93927eb304ecf8d4d5274dbdc2362b
Author: Keith Packard <keithp at koto.keithp.com>
Date: Mon Nov 5 16:08:55 2007 -0800
Fix parallel build in doc directory.
docbook2man has fixed output file names; place output in a subdirectory to
avoid collisions.
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 7a9a7c2..b7c2812 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -118,9 +118,11 @@ $(man3_MANS): func.refs
func.refs: local-fontconfig-devel.sgml $(DOC_FUNCS_SGML) version.sgml confdir.sgml
$(RM) func.refs
- $(DOC2MAN) local-fontconfig-devel.sgml && \
- mv manpage.refs func.refs
- $(RM) manpage.links
+ $(DOC2MAN) -o devel-man local-fontconfig-devel.sgml && \
+ mv devel-man/manpage.refs func.refs && \
+ mv devel-man/*.3 . && \
+ $(RM) devel-man/manpage.links && \
+ rmdir devel-man
local-fontconfig-devel.sgml: fontconfig-devel.sgml
$(LN_S) $< $@
commit 37e9d33950df03f76b6938ae5675ecfc853eb903
Author: Keith Packard <keithp at koto.keithp.com>
Date: Mon Nov 5 15:52:45 2007 -0800
Update version numbers to 2.4.92 (2.5 RC2)
diff --git a/README b/README
index 4fdc233..3c486f7 100644
--- a/README
+++ b/README
@@ -1,12 +1,57 @@
Fontconfig
Font configuration and customization library
- Version 2.4.91 (2.5 RC1)
- 2007-10-25
+ Version 2.4.92 (2.5 RC2)
+ 2007-11-5
Check INSTALL for compilation and installation instructions.
Report bugs to https://bugs.freedesktop.org in the fontconfig module.
+2.4.92 (2.5 RC2)
+
+Behdad Esfahbod (14):
+ Make fc-match --sort call FcFontRenderPrepare.
+ Port fonts-persian.conf to new alias syntax with binding="same"
+ Fix trivial bugs in edit-sgml.c
+ Add FcGetLangs() and FcLangGetCharSet().
+ Add/update config files from Fedora.
+ Split 40-generic.conf into 40-nonlatin.conf and 45-latin.conf
+ Use binding="same" in 30-urw-aliases.conf and remove duplicate entries.
+ Remove redundant/obsolete comments from conf files.
+ Remove 20-lohit-gujarati.conf. It's covered by 25-unhint-nonlatin.conf now.
+ Oops, fix Makefile.am.
+ Remove 25-unhint-nonlatin.conf from default configuration by not linking it.
+ Fix documented conf-file naming format in README
+ Remove list of available conf files from README.
+ Simplify/improve 30-metric-aliases.conf
+
+Keith Packard (25):
+ Also check configDirs mtimes in FcConfigUptoDate
+ Respect "binding" attribute in <alias> entries.
+ Correct documentation for FcAtomicLock (Bug 12947).
+ Remove fcprivate.h, move the remaining macros to fcint.h.
+ Correct documentation for FcConfigUptoDate (bug 12948).
+ Document skipping of fonts from FcFileScan/FcDirScan.
+ Make file_stat argument to FcDirCacheLoadFile optional.
+ Clean up exported names in fontconfig.h.
+ Track line numbers in sgml edit tool input.
+ Typo error in function name: Inverval -> interval
+ Don't check cache file time stamps when cleaning cache dir.
+ Use FcLangDifferentTerritory instead of FcLangDifferentCountry.
+ Verify documentation covers exposed symbols.
+ Document previously undocumented functions. (bug 12963)
+ Update documentation for FcStrCopyFilename (bug 12964).
+ Update documentation for stale FcConfigGetConfig function.
+ Have FcConfigSetCurrent accept the current configuration and simply return
+ Remove references to FcConfigParse and FcConfigLoad.
+ Replace incorrect documentation uses of 'char' with 'FcChar8' (bug 13002).
+ Fix formatting syntax in doc/fccache.fncs
+ Generate fccache.sgml, fcdircache.sgml and fclangset.sgml.
+ Formatting syntax mistake in doc/fclangset.fncs.
+ Link new function documentation into the fontconfig-devel.sgml
+ Ignore new generated documentation
+ Export FcConfig{G,S}etRescanInverval from .so, mark as deprecated.
+
2.4.91 (2.5 RC1)
Behdad Esfahbod (1):
diff --git a/fontconfig/fontconfig.h b/fontconfig/fontconfig.h
index 77276e6..0a09766 100644
--- a/fontconfig/fontconfig.h
+++ b/fontconfig/fontconfig.h
@@ -53,7 +53,7 @@ typedef int FcBool;
#define FC_MAJOR 2
#define FC_MINOR 4
-#define FC_REVISION 91
+#define FC_REVISION 92
#define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))
More information about the Fontconfig
mailing list