Bump version to 2.10.92

This commit is contained in:
Akira TAGOH 2013-03-29 16:10:15 +09:00
parent c842412c07
commit 73fa326d1e
3 changed files with 65 additions and 4 deletions

65
README
View File

@ -1,12 +1,73 @@
Fontconfig Fontconfig
Font configuration and customization library Font configuration and customization library
Version 2.10.91 (2.11 RC1) Version 2.10.92 (2.11 RC2)
2013-01-10 2013-03-29
Check INSTALL for compilation and installation instructions. Check INSTALL for compilation and installation instructions.
Report bugs to https://bugs.freedesktop.org in the fontconfig module. Report bugs to https://bugs.freedesktop.org in the fontconfig module.
2.10.92 (2.11 RC2)
Akira TAGOH (33):
Fix the build fail on MinGW
Bug 50497 - RFE: Add OpenType feature tags support
Improve FcGetPrgname() to work on BSD
Better fix for 2fe5ddfd
Add missing file descriptor to F_DUPFD_CLOEXEC
Fix mkstemp absence for some platform
Fix installation on MinGW32
Add another approach to FC_PRGNAME for Solaris 10 or before
remove the unnecessary code
Bug 59385 - Do the right thing for intermixed edit and test elements
Bug 23757 - Add mode="delete" to <edit>
Modernize configure.ac
Use AM_MISSING_PROG instead of hardcoding missing
Revert "test: Use SH_LOG_COMPILER and AM_TESTS_ENVIRONMENT"
Use AM_MISSING_PROG instead of hardcoding missing
Bug 50733 - Add font-file hash?
Bug 60312 - DIST_SUBDIRS should never appear in a conditional
Update _FcMatchers definition logic
Bump the cache version to 4
Add Culmus foundry to the vendor list
Bug 60748 - broken conf.d/10-autohint.conf and conf.d/10-unhinted.conf
Bug 60783 - Add Liberation Sans Narrow to 30-metric-aliases.conf
Fix a typo
Fix a crash when the object is non-builtin object
Fix broken sort order with FcFontSort()
Fix a memory leak
Bug 59456 - Adding a --sysroot like option to fc-cache
Do not copy FC_*LANG_OBJECT even if it's not available on the pattern
Fix a SIGSEGV on FcPatternGet* with NULL pattern
Bug 38737 - Wishlist: support FC_POSTSCRIPT_NAME
Minor cleanup
Bump libtool revision
Minor fix
Behdad Esfahbod (12):
Resepct $NOCONFIGURE
Ensure we find the uninstalled fontconfig header
Copy all values from pattern to font if the font doesn't have the element
Minor
Bug 59379 - FC_PRGNAME
Remove unused checks for common functions
Minor
Fix fc-cache crash caused by looking up NULL object incorrectly
Fix FC_PRGNAME default
Fix readlink failure
Accept digits as part of OpenType script tags
Fix crash with FcConfigSetCurrent(NULL)
Christoph J. Thompson (1):
Use the PKG_INSTALLDIR macro.
Colin Walters (1):
build: Only use PKG_INSTALLDIR if available
Quentin Glidic (2):
test: Use SH_LOG_COMPILER and AM_TESTS_ENVIRONMENT
Use LOG_COMPILER and AM_TESTS_ENVIRONMENT
2.10.91 (2.11 RC1) 2.10.91 (2.11 RC1)
Akira TAGOH (19): Akira TAGOH (19):

View File

@ -33,7 +33,7 @@ dnl This is the package version number, not the shared library
dnl version. This same version number must appear in fontconfig/fontconfig.h dnl version. This same version number must appear in fontconfig/fontconfig.h
dnl Yes, it is a pain to synchronize version numbers. Unfortunately, it's dnl Yes, it is a pain to synchronize version numbers. Unfortunately, it's
dnl not possible to extract the version number here from fontconfig.h dnl not possible to extract the version number here from fontconfig.h
AC_INIT([fontconfig], [2.10.91], [https://bugs.freedesktop.org/enger_bug.cgi?product=fontconfig]) AC_INIT([fontconfig], [2.10.92], [https://bugs.freedesktop.org/enger_bug.cgi?product=fontconfig])
AM_INIT_AUTOMAKE([1.11 parallel-tests dist-bzip2]) AM_INIT_AUTOMAKE([1.11 parallel-tests dist-bzip2])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])

View File

@ -52,7 +52,7 @@ typedef int FcBool;
#define FC_MAJOR 2 #define FC_MAJOR 2
#define FC_MINOR 10 #define FC_MINOR 10
#define FC_REVISION 91 #define FC_REVISION 92
#define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION)) #define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))