From patchwork Mon Mar 11 13:51:25 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 10847593 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 667FD13B5 for ; Mon, 11 Mar 2019 14:01:21 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 503FB29249 for ; Mon, 11 Mar 2019 14:01:21 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 4D21D29241; Mon, 11 Mar 2019 14:01:21 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id CB9C429039 for ; Mon, 11 Mar 2019 14:01:16 +0000 (UTC) Received: from localhost ([127.0.0.1]:34019 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h3LUR-0001gV-Vh for patchwork-qemu-devel@patchwork.kernel.org; Mon, 11 Mar 2019 10:01:16 -0400 Received: from eggs.gnu.org ([209.51.188.92]:48980) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h3LND-0003bY-Er for qemu-devel@nongnu.org; Mon, 11 Mar 2019 09:53:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h3LL2-00054W-PE for qemu-devel@nongnu.org; Mon, 11 Mar 2019 09:51:33 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:35492) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h3LL2-000540-He for qemu-devel@nongnu.org; Mon, 11 Mar 2019 09:51:32 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 0AC9252E9; Mon, 11 Mar 2019 14:51:31 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ESVzWRlbOezh; Mon, 11 Mar 2019 14:51:30 +0100 (CET) Received: from function (dhcp-13-99.lip.ens-lyon.fr [140.77.13.99]) by hera.aquilenet.fr (Postfix) with ESMTPSA id C4148CBD1; Mon, 11 Mar 2019 14:51:28 +0100 (CET) Received: from samy by function with local (Exim 4.92) (envelope-from ) id 1h3LKx-0000ah-JA; Mon, 11 Mar 2019 14:51:27 +0100 From: Samuel Thibault To: qemu-devel@nongnu.org Date: Mon, 11 Mar 2019 14:51:25 +0100 Message-Id: <20190311135127.2229-1-samuel.thibault@ens-lyon.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 185.233.100.1 Subject: [Qemu-devel] [PATCHv3 0/2] curses: Add support for wide output X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: ekohler@gmail.com, armbru@redhat.com, kraxel@redhat.com, pbonzini@redhat.com, Samuel Thibault Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP Hello, This adds support for wide output in the curses frontend Difference with previous version: - detect iconv from /usr/local before from /usr, in case a libiconv version is there in addition to the system-provided in /usr Samuel Thibault (2): iconv: detect and make curses depend on it curses: add option to specify VGA font encoding configure | 60 ++++++++- qapi/ui.json | 14 +++ qemu-options.hx | 5 +- ui/Makefile.objs | 4 +- ui/curses.c | 315 ++++++++++++++++++++++++++++++++++++++++------- vl.c | 2 +- 6 files changed, 348 insertions(+), 52 deletions(-)