From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LfhXy-0007Vd-Vb for qemu-devel@nongnu.org; Fri, 06 Mar 2009 16:25:35 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LfhXx-0007VB-Jq for qemu-devel@nongnu.org; Fri, 06 Mar 2009 16:25:34 -0500 Received: from [199.232.76.173] (port=59913 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LfhXx-0007V8-El for qemu-devel@nongnu.org; Fri, 06 Mar 2009 16:25:33 -0500 Received: from moutng.kundenserver.de ([212.227.17.9]:63349) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LfhXw-0007CW-TP for qemu-devel@nongnu.org; Fri, 06 Mar 2009 16:25:33 -0500 Message-ID: <49B194C7.80505@mail.berlios.de> Date: Fri, 06 Mar 2009 22:25:27 +0100 From: Stefan Weil MIME-Version: 1.0 Subject: Re: [Qemu-devel] [6721] Refactor keymap code to avoid duplication ("Daniel P. References: In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, Anthony Liguori Anthony Liguori schrieb: > Revision: 6721 > http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6721 > Author: aliguori > Date: 2009-03-06 20:27:10 +0000 (Fri, 06 Mar 2009) > Log Message: > ----------- > Refactor keymap code to avoid duplication ("Daniel P. Berrange") > > Each of the graphical frontends #include a .c file, for keymap code > resulting in duplicated definitions & duplicated compiled code. A > couple of small changes allowed this to be sanitized, so instead of > doing a #include "keymaps.c", duplicating all code, we can have a > shared keymaps.h file, and only compile code once. This allows the > next patch to move the VncState struct out into a header file without > causing clashing definitions. > > The new file keymaps.h is missing.