From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33376) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UrRD7-0000aZ-RO for qemu-devel@nongnu.org; Tue, 25 Jun 2013 07:15:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UrRD3-0000a8-QF for qemu-devel@nongnu.org; Tue, 25 Jun 2013 07:14:57 -0400 Received: from mx1.redhat.com ([209.132.183.28]:19614) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UrRD3-0000YE-Hz for qemu-devel@nongnu.org; Tue, 25 Jun 2013 07:14:53 -0400 Message-ID: <51C97C16.70008@redhat.com> Date: Tue, 25 Jun 2013 13:16:38 +0200 From: Laszlo Ersek MIME-Version: 1.0 References: <20130606150618.10486.60669.stgit@hds.com> <20130606150641.10486.35710.stgit@hds.com> In-Reply-To: <20130606150641.10486.35710.stgit@hds.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v4 05/10] qemu-ga: Add configure options to specify path to Windows/VSS SDK List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Tomoki Sekiyama Cc: libaiqing@huawei.com, mdroth@linux.vnet.ibm.com, stefanha@gmail.com, qemu-devel@nongnu.org, lcapitulino@redhat.com, vrozenfe@redhat.com, pbonzini@redhat.com, seiji.aguchi@hds.com, areis@redhat.com On 06/06/13 17:06, Tomoki Sekiyama wrote: > To enable VSS support in qemu-ga for Windows, header files included in > VSS SDK are required. > The VSS support is enabled by the configure option like below: > ./configure --with-vss-sdk="/path/to/VSS SDK" > > If the path is omitted, it tries to search the headers from default paths > and VSS support is enabled only if the SDK is found. > VSS support is disabled if --without-vss-sdk or --with-vss-sdk=no is > specified. > > VSS SDK is available from: > http://www.microsoft.com/en-us/download/details.aspx?id=23490 > > To cross-compile using mingw, you need to setup the SDK on Windows > environments to extract headers. You can also extract the SDK headers on > POSIX environments using scripts/extract-vss-headers and msitools. > > In addition, --with-win-sdk="/path/to/Windows SDK" option is also added to > specify path to Windows SDK, which may be used for native-compile of .tlb > file of qemu-ga VSS provider. However, this is usually unnecessary because > pre-compiled .tlb file is included. > > Signed-off-by: Tomoki Sekiyama > --- > .gitignore | 1 + > Makefile | 1 + > configure | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > 3 files changed, 71 insertions(+) Reviewed-by: Laszlo Ersek