From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39008) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W2ksg-00062A-AM for qemu-devel@nongnu.org; Mon, 13 Jan 2014 12:01:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W2ksX-00024v-VE for qemu-devel@nongnu.org; Mon, 13 Jan 2014 12:00:54 -0500 Received: from mail-ea0-x22f.google.com ([2a00:1450:4013:c01::22f]:59323) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W2ksX-00024f-9n for qemu-devel@nongnu.org; Mon, 13 Jan 2014 12:00:45 -0500 Received: by mail-ea0-f175.google.com with SMTP id z10so3441400ead.6 for ; Mon, 13 Jan 2014 09:00:44 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Mon, 13 Jan 2014 17:59:54 +0100 Message-Id: <1389632394-10130-10-git-send-email-pbonzini@redhat.com> In-Reply-To: <1389632394-10130-1-git-send-email-pbonzini@redhat.com> References: <1389632394-10130-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH v15 9/9] block: convert block drivers linked with libs to modules List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, famz@redhat.com, mjt@tls.msk.ru, alex@alex.org.uk, mrezanin@redhat.com, vilanova@ac.upc.edu, rth@twiddle.net From: Fam Zheng The converted block drivers are: curl iscsi rbd ssh glusterfs Signed-off-by: Fam Zheng Signed-off-by: Paolo Bonzini --- configure | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/configure b/configure index c382044..1f0c5b8 100755 --- a/configure +++ b/configure @@ -4071,7 +4071,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 @@ -4162,7 +4162,7 @@ if test "$glx" = "yes" ; then fi if test "$libiscsi" = "yes" ; then - echo "CONFIG_LIBISCSI=y" >> $config_host_mak + echo "CONFIG_LIBISCSI=m" >> $config_host_mak if test "$libiscsi_version" = "1.4.0"; then echo "CONFIG_LIBISCSI_1_4=y" >> $config_host_mak fi @@ -4188,7 +4188,7 @@ if test "$qom_cast_debug" = "yes" ; then echo "CONFIG_QOM_CAST_DEBUG=y" >> $config_host_mak fi if test "$rbd" = "yes" ; then - echo "CONFIG_RBD=y" >> $config_host_mak + echo "CONFIG_RBD=m" >> $config_host_mak echo "RBD_CFLAGS=$rbd_cflags" >> $config_host_mak echo "RBD_LIBS=$rbd_libs" >> $config_host_mak fi @@ -4233,7 +4233,7 @@ if test "$getauxval" = "yes" ; then fi if test "$glusterfs" = "yes" ; then - echo "CONFIG_GLUSTERFS=y" >> $config_host_mak + echo "CONFIG_GLUSTERFS=m" >> $config_host_mak echo "GLUSTERFS_CFLAGS=$glusterfs_cflags" >> $config_host_mak echo "GLUSTERFS_LIBS=$glusterfs_libs" >> $config_host_mak fi @@ -4243,7 +4243,7 @@ if test "$glusterfs_discard" = "yes" ; then fi if test "$libssh2" = "yes" ; then - echo "CONFIG_LIBSSH2=y" >> $config_host_mak + echo "CONFIG_LIBSSH2=m" >> $config_host_mak echo "LIBSSH2_CFLAGS=$libssh2_cflags" >> $config_host_mak echo "LIBSSH2_LIBS=$libssh2_libs" >> $config_host_mak fi -- 1.7.1