Bump version to 2.11.93

This commit is contained in:
Akira TAGOH 2015-03-09 12:22:40 +09:00
parent b75d809d12
commit 69ff6b6e26
3 changed files with 39 additions and 6 deletions

37
README
View File

@ -1,12 +1,45 @@
Fontconfig
Font configuration and customization library
Version 2.11.92 (2.12 RC2)
2015-01-13
Version 2.11.93 (2.12 RC3)
2015-03-09
Check INSTALL for compilation and installation instructions.
Report bugs to https://bugs.freedesktop.org in the fontconfig module.
2.11.93 (2.12 RC3)
Akira TAGOH (18):
Fix a typo in docs
Add pkg.m4 to git
Fix a build fail on some non-POSIX platforms
ifdef'd the unnecessary code for win32
Fix pointer cast warning on win32
filter can be null
Copy the real size of struct dirent
Rework again to copy the struct dirent
Hardcode the blanks in the library
Update the script to recognize the escaped space
Fix a build issue when $(srcdir) != $(builddir)
Don't add FC_LANG when it has "und"
Fix the array allocation
Improve the performance on searching blanks
Fix a segfault when OOM happened.
Fix a bug in the previous change forFcBlanksIsMember()
Fix an infinite loop in FcBlanksIsMember()
Fix a trivial bug for dist
Alan Coopersmith (1):
Fix configure to work with Solaris Studio compilers
Behdad Esfahbod (3):
Fix symbol cmap handling
Remove dead code after previous commit
Simplify some more
Michael Haubenwallner (1):
Ensure config.h is included first, bug#89336.
2.11.92 (2.12 RC2)
Akira TAGOH (1):

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 Yes, it is a pain to synchronize version numbers. Unfortunately, it's
dnl not possible to extract the version number here from fontconfig.h
AC_INIT([fontconfig], [2.11.92], [https://bugs.freedesktop.org/enter_bug.cgi?product=fontconfig])
AC_INIT([fontconfig], [2.11.93], [https://bugs.freedesktop.org/enter_bug.cgi?product=fontconfig])
AM_INIT_AUTOMAKE([1.11 parallel-tests dist-bzip2])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
@ -73,11 +73,11 @@ dnl libtool versioning
dnl bump revision when fixing bugs
dnl bump current and age, reset revision to zero when adding APIs
dnl bump current, leave age, reset revision to zero when changing/removing APIS
LIBT_CURRENT=9
LIBT_CURRENT=10
LIBT_REVISION=0
AC_SUBST(LIBT_CURRENT)
AC_SUBST(LIBT_REVISION)
LIBT_AGE=8
LIBT_AGE=9
LIBT_VERSION_INFO="$LIBT_CURRENT:$LIBT_REVISION:$LIBT_AGE"
AC_SUBST(LIBT_VERSION_INFO)

View File

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