diff options
author | wiz <wiz@pkgsrc.org> | 2008-11-24 13:26:42 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2008-11-24 13:26:42 +0000 |
commit | bfa3bc022087f9e12ee6999b85906be71142e5ef (patch) | |
tree | 7f1e6e8059de0af6ba9eedf52b688e7395120a83 /devel | |
parent | dd696aa468099ce54f3628d5d099a707c6450bf2 (diff) | |
download | pkgsrc-bfa3bc022087f9e12ee6999b85906be71142e5ef.tar.gz |
Update to 1.22.3:
Overview of changes between 1.22.2 and 1.22.3
=============================================
- Minor bug fix with matrix operations
- Fix build with older compilers
- Bugs fixed in this release:
Bug 561779 – incorrect calculations in pango_matrix_concat
implementation
Bug 560730 – pango 1.22.2 build failure on Solaris 10, too many array
initializers in pango-language.c
Bug 561740 – Use stack allocation for thai_engine_break
Diffstat (limited to 'devel')
-rw-r--r-- | devel/pango/Makefile | 4 | ||||
-rw-r--r-- | devel/pango/distinfo | 9 | ||||
-rw-r--r-- | devel/pango/patches/patch-aa | 22 |
3 files changed, 6 insertions, 29 deletions
diff --git a/devel/pango/Makefile b/devel/pango/Makefile index 1afc67be90e..2590f4241a9 100644 --- a/devel/pango/Makefile +++ b/devel/pango/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.121 2008/11/13 14:39:11 reed Exp $ +# $NetBSD: Makefile,v 1.122 2008/11/24 13:26:42 wiz Exp $ -DISTNAME= pango-1.22.2 +DISTNAME= pango-1.22.3 CATEGORIES= devel fonts MASTER_SITES= ${MASTER_SITE_GNOME:=sources/pango/1.22/} EXTRACT_SUFX= .tar.bz2 diff --git a/devel/pango/distinfo b/devel/pango/distinfo index 567aec97133..2a36b3cc02b 100644 --- a/devel/pango/distinfo +++ b/devel/pango/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.67 2008/11/24 11:30:49 tnn Exp $ +$NetBSD: distinfo,v 1.68 2008/11/24 13:26:42 wiz Exp $ -SHA1 (pango-1.22.2.tar.bz2) = d1a3368ffdb29a239c41498bedbee6bac222d77a -RMD160 (pango-1.22.2.tar.bz2) = 355a8743f8a98d6780c6464acdf9d2c4037ad601 -Size (pango-1.22.2.tar.bz2) = 1462487 bytes -SHA1 (patch-aa) = de14d8b52aef9b448c170e0b3cca89fe93be3962 +SHA1 (pango-1.22.3.tar.bz2) = 6fa59f6ede26b1ad7e46ad5cad376f6a99b7bca2 +RMD160 (pango-1.22.3.tar.bz2) = 99f8ae611d0d040fe57e0fe2788d04c311761798 +Size (pango-1.22.3.tar.bz2) = 1463916 bytes diff --git a/devel/pango/patches/patch-aa b/devel/pango/patches/patch-aa deleted file mode 100644 index eedc394caa3..00000000000 --- a/devel/pango/patches/patch-aa +++ /dev/null @@ -1,22 +0,0 @@ -$NetBSD: patch-aa,v 1.14 2008/11/24 11:30:49 tnn Exp $ - ---- pango/pango-language.c.orig 2008-08-20 21:47:11.000000000 +0200 -+++ pango/pango-language.c -@@ -487,7 +487,7 @@ static const union _LangPool { - #define LANGUAGE(id, source, sample) char POOLSTRFIELD(__LINE__)[sizeof(sample)]; - #include "pango-language-sample-table.h" - #undef LANGUAGE -- }; -+ } lang_info; - const char str[1]; - } lang_pool = { { - "", -@@ -496,6 +496,8 @@ static const union _LangPool { - #undef LANGUAGE - } }; - static const LangInfo lang_texts[] = { -+#undef POOLSTRFIELD1 -+#define POOLSTRFIELD1(line) lang_info.str##line - #define LANGUAGE(id, source, sample) {G_STRINGIFY(id), G_STRUCT_OFFSET(union _LangPool, POOLSTRFIELD(__LINE__))}, - #include "pango-language-sample-table.h" - #undef LANGUAGE |