From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57456) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VHWgc-0005zV-NM for qemu-devel@nongnu.org; Thu, 05 Sep 2013 06:21:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VHWgW-0002iF-OX for qemu-devel@nongnu.org; Thu, 05 Sep 2013 06:21:14 -0400 Received: from mx1.redhat.com ([209.132.183.28]:2905) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VHWgW-0002hH-Gh for qemu-devel@nongnu.org; Thu, 05 Sep 2013 06:21:08 -0400 From: Fam Zheng Date: Thu, 5 Sep 2013 18:20:48 +0800 Message-Id: <1378376448-29036-7-git-send-email-famz@redhat.com> In-Reply-To: <1378376448-29036-1-git-send-email-famz@redhat.com> References: <1378376448-29036-1-git-send-email-famz@redhat.com> Subject: [Qemu-devel] [RFC PATCH 6/6] curl: build as shared library List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, mjt@tls.msk.ru, famz@redhat.com, stefanha@redhat.com Produce block/curl.so with --enable-curl. "make install" is not installing it yet, manually copy it to /usr/lib/qemu/block/curl.so to make it loaded. Signed-off-by: Fam Zheng --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 975853e..ac81a7c 100755 --- a/configure +++ b/configure @@ -3878,7 +3878,7 @@ if test "$bswap_h" = "yes" ; then echo "CONFIG_MACHINE_BSWAP_H=y" >> $config_host_mak fi if test "$curl" = "yes" ; then - echo "CONFIG_CURL=y" >> $config_host_mak + echo "CONFIG_CURL=m" >> $config_host_mak echo "CURL_CFLAGS=$curl_cflags" >> $config_host_mak echo "CURL_LIBS=$curl_libs" >> $config_host_mak fi -- 1.8.3.1