トップ «前の日記(2013年08月27日) 最新 次の日記(2013年10月25日)» 編集

Masa's blog

検索キーワード:

2013年10月15日 Solved! firefox + kinput2 = pull-down menu don't work !? [長年日記]

_ Solved! firefox + kinput2 = pull-down menu don't work !?

When I use kinput2 for japanese input method with firefox, pull-down menu of firefox don't work!

I have to apply a patch for libX11 and re-build it to solve a problem(see Fix bogus timestamp generated by XIM).

you can get a source of libX11 from Slackware site.

$ tar xvvf libX11-1.5.0.tar.xz
$ cd libX11-1.5.0/

and you can get a patch for libX11 from here

$ cat /_somewhere_/Fix-bogus-timestamp-generated-by-XIM.patch
diff --git a/modules/im/ximcp/imDefLkup.c b/modules/im/ximcp/imDefLkup.c
index 0a9553a..7add1f2 100644
--- a/modules/im/ximcp/imDefLkup.c
+++ b/modules/im/ximcp/imDefLkup.c
@@ -269,6 +269,8 @@ _XimForwardEventCore(
     int		 ret_code;
     INT16	 len;

+    bzero(buf32, sizeof(buf32)); /* valgrind noticed uninitialized memory use! */
+
     if (!(len = _XimSetEventToWire(ev, (xEvent *)&buf_s[4])))
 	return False;				/* X event */

@@ -706,6 +708,8 @@ _XimCommitRecv(

     MARK_FABRICATED(im);

+    bzero(&ev, sizeof(ev));	/* uninitialized : found when running kterm under valgrind */
+
     ev.type = KeyPress;
     ev.send_event = False;
     ev.display = im->core.display;
@@ -713,6 +717,15 @@ _XimCommitRecv(
     ev.keycode = 0;
     ev.state = 0;

+    ev.time = 0L;
+    ev.serial = LastKnownRequestProcessed(im->core.display);
+    /* FIXME :
+       I wish there were COMMENTs (!) about the data passed around.
+    */
+#if 0
+    fprintf(stderr,"%s,%d: putback k press   FIXED ev.time=0 ev.serial=%lu\n", __FILE__, __LINE__, ev.serial);
+#endif
+
     XPutBackEvent(im->core.display, (XEvent *)&ev);

     return True;
diff --git a/modules/im/ximcp/imTrans.c b/modules/im/ximcp/imTrans.c
index 4bdecb2..a8cd95e 100644
--- a/modules/im/ximcp/imTrans.c
+++ b/modules/im/ximcp/imTrans.c
@@ -222,12 +222,20 @@ _XimTransInternalConnection(

     if (spec->is_putback)
 	return;
+
+    bzero(&ev, sizeof(ev));	/* FIXME: other fields may be accessed, too. */
     kev = (XKeyEvent *)&ev;
     kev->type = KeyPress;
     kev->send_event = False;
     kev->display = im->core.display;
     kev->window = spec->window;
     kev->keycode = 0;
+    kev->time = 0L;
+    kev->serial = LastKnownRequestProcessed(im->core.display);
+#if 0
+    fprintf(stderr,"%s,%d: putback FIXED kev->time=0 kev->serial=%lu\n", __FILE__, __LINE__, kev->serial);
+#endif
+
     XPutBackEvent(im->core.display, &ev);
     XFlush(im->core.display);
     spec->is_putback = True;

apply a patch and rebuild libX11!

$ patch -p1 </_somewhere_/Fix-bogus-timestamp-generated-by-XIM.patch
$ export LC_ALL=ja_JP.UTF-8
$ export LANG=ja_JP.UTF-8
$ ./configure \
 --prefix=/usr \
 --libdir=/usr/lib \
 --sysconfdir=/etc \
 --localstatedir=/var \
 --infodir=/usr/info \
 --mandir=/usr/man \
 --disable-static
$ make
$ su
# make install
# ldconfig

and then everything gose fine ;)