Your message dated Fri, 03 Jun 2005 20:38:25 +0900
with message-id <[EMAIL PROTECTED]>
and subject line kon2 doesn't run on Linux-2.6
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 15 Jan 2005 08:59:26 +0000
>From [EMAIL PROTECTED] Sat Jan 15 00:59:25 2005
Return-path: <[EMAIL PROTECTED]>
Received: from yahoobb219197156012.bbtec.net (matx) [219.197.156.12]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CpjmH-0006ku-00; Sat, 15 Jan 2005 00:59:25 -0800
Received: from localhost ([127.0.0.1])
by matx with esmtp (Exim 4.34)
id 1CpjmF-0001L7-B3
for [EMAIL PROTECTED]; Sat, 15 Jan 2005 17:59:23 +0900
Date: Sat, 15 Jan 2005 17:57:57 +0900 (JST)
Message-Id: <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: kon2 doesn't run on Linux-2.6.9
From: [EMAIL PROTECTED]
X-Mailer: Mew version 3.3 on Emacs 20.7 / Mule 4.1 (AOI)
Mime-Version: 1.0
Content-Type: Text/Plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.4 required=4.0 tests=BAYES_00,HAS_PACKAGE,
NO_REAL_NAME autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
Package: <kon2>
Version: 0.3.9b-17
kon2 doesn't run on linux-2.6.9-2-686.
matx# kon
Kanji ON Console ver.0.3.9 (2000/04/09)
mmap: Success
KON> error reading /etc/kon.cfg
matx#
Because, mmap() return value check was wrong.
Following patch fix the problem.
--- src/display/vga.c.orig 2000-04-09 10:17:04.000000000 +0900
+++ src/display/vga.c 2005-01-15 17:48:31.000000000 +0900
@@ -692,7 +692,7 @@
GRAPH_BASE
);
close(devMem);
- if ((long)gramMem < 0) {
+ if ((long)gramMem == -1L) {
perror("mmap");
return FAILURE;
}
Other sources, such as j31sx.c and j3100.c, also contain this bug.
These shoud be corrected too, but I've not checked.
The error message "error reading /etc/kon.cfg" is erroneous.
Until 2.6.8, the returned pointer of mmap() might point to lower 2GB
region, so, it didn't cause problem.
K.Kumon
---------------------------------------
Received: (at 290609-close) by bugs.debian.org; 3 Jun 2005 11:38:19 +0000
>From [EMAIL PROTECTED] Fri Jun 03 04:38:19 2005
Return-path: <[EMAIL PROTECTED]>
Received: from hanzubon.st.wakwak.ne.jp (master.hanzubon.jp) [219.103.212.212]
(postfix)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DeAVH-0001Go-00; Fri, 03 Jun 2005 04:38:19 -0700
Received: from localhost (localhost [127.0.0.1])
by master.hanzubon.jp (Postfix) with ESMTP id 7BB975EC437
for <[EMAIL PROTECTED]>; Fri, 3 Jun 2005 20:38:17 +0900 (JST)
Received: from master.hanzubon.jp ([127.0.0.1])
by localhost (master64 [127.0.0.1]) (amavisd-new, port 10024)
with LMTP id 23149-02-3 for <[EMAIL PROTECTED]>;
Fri, 3 Jun 2005 20:38:17 +0900 (JST)
Received: from magic.hanzubon.jp (localhost [127.0.0.1])
by master.hanzubon.jp (Postfix) with ESMTP id 5EC1E5EC419
for <[EMAIL PROTECTED]>; Fri, 3 Jun 2005 20:38:17 +0900 (JST)
Date: Fri, 03 Jun 2005 20:38:25 +0900
From: ISHIKAWA Mutsumi <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: kon2 doesn't run on Linux-2.6
User-Agent: Wanderlust/2.11.30 (Wonderwall) SEMI/1.14.6 (Maruoka) FLIM/1.14.6
(Marutamachi) APEL/10.6 Emacs/22.0.50 (i386-pc-linux-gnu) MULE/5.0 (SAKAKI)
MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka")
Content-Type: text/plain; charset=US-ASCII
Message-Id: <[EMAIL PROTECTED]>
X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at hanzubon.jp
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-3.0 required=4.0 tests=BAYES_00 autolearn=no
version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
This bug was already fixed in 0.3.9b-18.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]