From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39436) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZCeq6-0006E7-Dr for qemu-devel@nongnu.org; Tue, 07 Jul 2015 22:11:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZCeq2-0002s6-M7 for qemu-devel@nongnu.org; Tue, 07 Jul 2015 22:11:58 -0400 Received: from e17.ny.us.ibm.com ([129.33.205.207]:57797) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZCeq2-0002s0-Hl for qemu-devel@nongnu.org; Tue, 07 Jul 2015 22:11:54 -0400 Received: from /spool/local by e17.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 7 Jul 2015 22:11:54 -0400 Received: from b01cxnp22035.gho.pok.ibm.com (b01cxnp22035.gho.pok.ibm.com [9.57.198.25]) by d01dlp02.pok.ibm.com (Postfix) with ESMTP id B11926E801D for ; Tue, 7 Jul 2015 22:03:39 -0400 (EDT) Received: from d01av04.pok.ibm.com (d01av04.pok.ibm.com [9.56.224.64]) by b01cxnp22035.gho.pok.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t682Bqvh63242442 for ; Wed, 8 Jul 2015 02:11:52 GMT Received: from d01av04.pok.ibm.com (localhost [127.0.0.1]) by d01av04.pok.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t682Bqha028342 for ; Tue, 7 Jul 2015 22:11:52 -0400 From: Michael Roth Date: Tue, 7 Jul 2015 21:11:29 -0500 Message-Id: <1436321496-26179-5-git-send-email-mdroth@linux.vnet.ibm.com> In-Reply-To: <1436321496-26179-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1436321496-26179-1-git-send-email-mdroth@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 04/11] qga: add win32 library iphlpapi List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, Kirk Allan From: Kirk Allan Add the iphlpapi library to use APIs such as GetAdaptersInfo and GetAdaptersAddresses. Signed-off-by: Kirk Allan Signed-off-by: Michael Roth --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 3063739..3bb5e55 100755 --- a/configure +++ b/configure @@ -732,7 +732,7 @@ if test "$mingw32" = "yes" ; then sysconfdir="\${prefix}" local_statedir= confsuffix="" - libs_qga="-lws2_32 -lwinmm -lpowrprof $libs_qga" + libs_qga="-lws2_32 -lwinmm -lpowrprof -liphlpapi $libs_qga" fi werror="" -- 1.9.1