From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58604) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZCePA-0007gG-Qx for qemu-devel@nongnu.org; Tue, 07 Jul 2015 21:44:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZCeP2-0001ah-Aq for qemu-devel@nongnu.org; Tue, 07 Jul 2015 21:44:08 -0400 Received: from e33.co.us.ibm.com ([32.97.110.151]:49874) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZCeP2-0001aU-3v for qemu-devel@nongnu.org; Tue, 07 Jul 2015 21:44:00 -0400 Received: from /spool/local by e33.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 7 Jul 2015 19:43:59 -0600 Received: from b03cxnp08028.gho.boulder.ibm.com (b03cxnp08028.gho.boulder.ibm.com [9.17.130.20]) by d03dlp02.boulder.ibm.com (Postfix) with ESMTP id 40F5A3E4003E for ; Tue, 7 Jul 2015 19:43:57 -0600 (MDT) Received: from d03av03.boulder.ibm.com (d03av03.boulder.ibm.com [9.17.195.169]) by b03cxnp08028.gho.boulder.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t681hExH43188470 for ; Tue, 7 Jul 2015 18:43:14 -0700 Received: from d03av03.boulder.ibm.com (localhost [127.0.0.1]) by d03av03.boulder.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t681huRU002676 for ; Tue, 7 Jul 2015 19:43:56 -0600 From: Michael Roth Date: Tue, 7 Jul 2015 20:43:32 -0500 Message-Id: <1436319819-17864-5-git-send-email-mdroth@linux.vnet.ibm.com> In-Reply-To: <1436319819-17864-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1436319819-17864-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