Bump version to 2.10.1
This commit is contained in:
parent
b7287a91fe
commit
cbfbd4041d
8
README
8
README
|
@ -1,12 +1,18 @@
|
||||||
Fontconfig
|
Fontconfig
|
||||||
Font configuration and customization library
|
Font configuration and customization library
|
||||||
Version 2.10.0
|
Version 2.10.1
|
||||||
2012-03-11
|
2012-03-11
|
||||||
|
|
||||||
|
|
||||||
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.1
|
||||||
|
|
||||||
|
Akira TAGOH (2):
|
||||||
|
Fix a typo in fontconfig.pc
|
||||||
|
Install config files first
|
||||||
|
|
||||||
2.10.0
|
2.10.0
|
||||||
|
|
||||||
Akira TAGOH (5):
|
Akira TAGOH (5):
|
||||||
|
|
|
@ -34,7 +34,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
|
||||||
AM_INIT_AUTOMAKE(fontconfig, 2.10.0)
|
AM_INIT_AUTOMAKE(fontconfig, 2.10.1)
|
||||||
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
|
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
|
||||||
|
|
||||||
dnl libtool versioning
|
dnl libtool versioning
|
||||||
|
|
|
@ -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 0
|
#define FC_REVISION 1
|
||||||
|
|
||||||
#define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))
|
#define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue