From patchwork Mon Nov 19 09:22:12 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Brad Smith X-Patchwork-Id: 199958 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 13C7B2C0098 for ; Mon, 19 Nov 2012 20:22:57 +1100 (EST) Received: from localhost ([::1]:35430 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TaNZ8-0003Fl-9D for incoming@patchwork.ozlabs.org; Mon, 19 Nov 2012 04:22:54 -0500 Received: from eggs.gnu.org ([208.118.235.92]:36369) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TaNYz-0003F9-Bz for qemu-devel@nongnu.org; Mon, 19 Nov 2012 04:22:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TaNYw-0005vH-9d for qemu-devel@nongnu.org; Mon, 19 Nov 2012 04:22:45 -0500 Received: from speedy.comstyle.com ([2001:470:1d:8c::2]:28916 helo=mail.comstyle.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TaNYw-0005tr-5t for qemu-devel@nongnu.org; Mon, 19 Nov 2012 04:22:42 -0500 Received: from rox.home.comstyle.com (unknown [IPv6:2001:470:b01e:3:100d:8216:49af:d786]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: brad) by mail.comstyle.com (Postfix) with ESMTPSA id AEF352362B for ; Mon, 19 Nov 2012 04:22:17 -0500 (EST) Date: Mon, 19 Nov 2012 04:22:12 -0500 From: Brad Smith To: qemu-devel@nongnu.org Message-ID: <20121119092207.GA20679@rox.home.comstyle.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-comstyle-MailScanner-Information: Please contact the ISP for more information X-comstyle-MailScanner-ID: AEF352362B.AA40D X-comstyle-MailScanner: Found to be clean X-comstyle-MailScanner-SpamCheck: not spam (whitelisted), SpamAssassin (not cached, score=-2.9, required 6, autolearn=not spam, ALL_TRUSTED -1.00, BAYES_00 -1.90) X-comstyle-MailScanner-From: brad@comstyle.com X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:470:1d:8c::2 Subject: [Qemu-devel] [PATCH] curses: Remove OpenBSD workaround X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org I removed the same sort of workaround for OpenBSD within the configure script with commit 4dcc3f5876fa638d5c35bd47be3b717ea74cc2e7 but didn't bother to grep further to come across this same chunk of code in the curses code itself. So the following diff removes the same workaround chunk within the curses code. Signed-off-by: Brad Smith diff --git a/ui/curses.c b/ui/curses.c index b40b223..5dc0b2c 100644 --- a/ui/curses.c +++ b/ui/curses.c @@ -28,10 +28,6 @@ #include #endif -#ifdef __OpenBSD__ -#define resize_term resizeterm -#endif - #include "qemu-common.h" #include "console.h" #include "sysemu.h"