From mboxrd@z Thu Jan 1 00:00:00 1970 Received: by 10.90.117.16 with SMTP id p16cs456736agc; Mon, 2 Nov 2009 04:16:50 -0800 (PST) Received: by 10.224.34.193 with SMTP id m1mr2789633qad.247.1257164210163; Mon, 02 Nov 2009 04:16:50 -0800 (PST) Return-Path: Received: from rubyforge.org (rubyforge.org [205.234.109.19]) by mx.google.com with ESMTP id 40si7453749qyk.6.2009.11.02.04.16.50; Mon, 02 Nov 2009 04:16:50 -0800 (PST) Received-SPF: pass (google.com: domain of sup-talk-bounces@rubyforge.org designates 205.234.109.19 as permitted sender) client-ip=205.234.109.19; Authentication-Results: mx.google.com; spf=pass (google.com: domain of sup-talk-bounces@rubyforge.org designates 205.234.109.19 as permitted sender) smtp.mail=sup-talk-bounces@rubyforge.org Received: from rubyforge.org (rubyforge.org [127.0.0.1]) by rubyforge.org (Postfix) with ESMTP id AE7473C8061; Mon, 2 Nov 2009 07:16:49 -0500 (EST) Received: from sam.mediasupervision.de (sam.mediasupervision.de [80.152.3.104]) by rubyforge.org (Postfix) with ESMTP id C56B918582D0 for ; Mon, 2 Nov 2009 07:06:37 -0500 (EST) Received: from localhost (sam.mediasupervision.de [127.0.0.1]) by sam.mediasupervision.de (Postfix) with ESMTP id AF319485C66 for ; Mon, 2 Nov 2009 13:06:36 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at sam.mediasupervision.de Received: from sam.mediasupervision.de ([127.0.0.1]) by localhost (sam.mediasupervision.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id LR6vTyMAVN9H for ; Mon, 2 Nov 2009 13:06:36 +0100 (CET) Received: by sam.mediasupervision.de (Postfix, from userid 1000) id 8A159485C76; Mon, 2 Nov 2009 13:06:36 +0100 (CET) From: Gregor Hoffleit To: sup-talk Date: Mon, 02 Nov 2009 13:06:36 +0100 Message-Id: <1257162838-sup-737@sam.mediasupervision.de> User-Agent: Sup/git Subject: [sup-talk] Patch for ncursesw branch (use panelw and formw) X-BeenThere: sup-talk@rubyforge.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: User & developer discussion of Sup List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: sup-talk-bounces@rubyforge.org Errors-To: sup-talk-bounces@rubyforge.org I noticed that the ncursesw branch implements only the first part of the wide-char fixes suggested in the extconf patch in http://rubyforge.org/pipermail/sup-talk/2007-October/000297.html. Entering UTF-8 characters in the textfields ('To', 'Subject', 'Alias') still doesn't work. It worked fine, though, applied the second part of the patch as well. This is the diff against ncursesw: diff --git a/ncurses-0.9.1/extconf.rb b/ncurses-0.9.1/extconf.rb index a559385..7c4d2c2 100644 --- a/ncurses-0.9.1/extconf.rb +++ b/ncurses-0.9.1/extconf.rb @@ -118,11 +118,11 @@ have_func("attr_get") puts "checking for the panel library..." if have_header("panel.h") - have_library("panel", "panel_hidden") + have_library("panelw", "panel_hidden") end puts "checking for the form library..." if have_header("form.h") - have_library("form", "new_form") + have_library("formw", "new_form") end create_makefile('ncurses') _______________________________________________ sup-talk mailing list sup-talk@rubyforge.org http://rubyforge.org/mailman/listinfo/sup-talk