Subject: Re: Updated entries for qt3-*-3.2.2
To: Nick Hudson <skrll@netbsd.org>
From: Bang Jun-Young <junyoung@netbsd.org>
List: tech-pkg
Date: 12/14/2003 21:47:32
--a8Wt8u1KmwUX3Y2C
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

On Sun, Dec 14, 2003 at 12:16:23PM +0000, Nick Hudson wrote:
> On Sunday 14 December 2003 10:46 am, Bang Jun-Young wrote:
> [...]
> > > But you shoukd skrll@ first since he's the maintainer.
> > 
> > I was not sure about who I should contact first, since there's no
> > maintainer assigned to qt3.
> 
> $ grep MAINTAINER qt3/Makefile*
> qt3/Makefile.common:MAINTAINER= skrll@NetBSD.org
> 
> I'll update to 3.2.3 today or tomorrow.

Also, when you update it, please apply the attached patch as well.
It fixes a nasty bug in Hangul (Korean character) handling. It will
be submitted to Trolltech so that it's included in the next release.

Jun-Young

-- 
Bang Jun-Young <junyoung@NetBSD.org>

--a8Wt8u1KmwUX3Y2C
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="qt3.patch"

$NetBSD$

--- src/kernel/qscriptengine_x11.cpp.orig	2003-12-14 21:41:27.000000000 +0900
+++ src/kernel/qscriptengine_x11.cpp	2003-12-14 21:42:57.000000000 +0900
@@ -2671,7 +2671,7 @@
     } else if (syllableLength == 3) {
 	int LIndex = ch[0].unicode() - Hangul_LBase;
 	int VIndex = ch[1].unicode() - Hangul_VBase;
-	int TIndex = ch[1].unicode() - Hangul_TBase;
+	int TIndex = ch[2].unicode() - Hangul_TBase;
 	if (LIndex >= 0 && LIndex < Hangul_LCount &&
 	    VIndex >= 0 && VIndex < Hangul_VCount &&
 	    TIndex >= 0 && TIndex < Hangul_TCount )

--a8Wt8u1KmwUX3Y2C--