On Thu, Jul 05, 2012 at 10:11:48AM +0200, David Coppa wrote:
> Hi,
>
> Here's an update to the latest freetype release (2.4.10).
>
> Please review, I'm a bit unsure about shlib_version bumping (major or minor?)
>
> Tested on amd64/sparc64.
As far as I can see there is only one new function added, no other change in
any of the public headers so the minor bump is enough.
But you forgot to update FT_VERSION_INFO in Makefile. With that
change, ok matthieu@. (This is needed since it's the version exported
in freetype.pc, even if its 100% wrong, people who need a particular
version of freetype are used to check that).
Index: Makefile
===================================================================
RCS file: /cvs/OpenBSD/xenocara/lib/freetype/Makefile,v
retrieving revision 1.24
diff -u -r1.24 Makefile
--- Makefile 14 Apr 2012 09:45:45 -0000 1.24
+++ Makefile 6 Jul 2012 19:21:51 -0000
@@ -2,7 +2,7 @@
FREETYPESRC= ${.CURDIR}/src
-FT_VERSION_INFO= 14.1.8 # Get it from builds/unix/configure.ac
+FT_VERSION_INFO= 15.0.9 # Get it from builds/unix/configure.ac
.ifmake includes
SUBDIR= include
--
Matthieu Herrb