From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:39755) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPdz5-00069m-PY for qemu-devel@nongnu.org; Tue, 09 Apr 2013 15:13:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UPdz4-0002nB-5V for qemu-devel@nongnu.org; Tue, 09 Apr 2013 15:13:35 -0400 Received: from mail-oa0-f41.google.com ([209.85.219.41]:39462) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPdz4-0002mv-0c for qemu-devel@nongnu.org; Tue, 09 Apr 2013 15:13:34 -0400 Received: by mail-oa0-f41.google.com with SMTP id f4so7937196oah.0 for ; Tue, 09 Apr 2013 12:13:32 -0700 (PDT) From: Anthony Liguori In-Reply-To: <5163D31F.5060901@redhat.com> References: <1365495755-10902-1-git-send-email-hdegoede@redhat.com> <5163D31F.5060901@redhat.com> Date: Tue, 09 Apr 2013 14:13:29 -0500 Message-ID: <87a9p7h606.fsf@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [PATCH] virtio-9p: Fix virtio-9p no longer building after hw-dirs branch merge List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini , Hans de Goede , qemu-devel Paolo Bonzini writes: > Il 09/04/2013 10:22, Hans de Goede ha scritto: >> Signed-off-by: Hans de Goede >> Cc: Paolo Bonzini >> --- >> hw/9pfs/virtio-9p-device.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion > > Ouch, /me installs libcap-ng-devel. On a fresh F18, I tried to find all the deps needed that can be reasonably installed. This is what I came up with: # yum install xen-devel iasl libfdt-devel libcap-ng-devel \ spice-server-devel gnutls-devel cyrus-sasl-devel libjpeg-turbo-devel \ libpng-devel uuid-devel xfsprogs-devel ncurses-devel brlapi-devel \ libcurl-devel bluez-libs-devel libiscsi-devel libcap-ng-devel \ spice-protocol SDL-devel libcap-devel usbredir-devel libseccomp-devel \ ceph-devel Still missing GlusterFS, VDE, and iscsi. F18 doesn't seem to package these at appropriate versions. Regards, Anthony Liguori > > Thanks. > > Paolo > >> diff --git a/hw/9pfs/virtio-9p-device.c b/hw/9pfs/virtio-9p-device.c >> index 43f930e..b476b81 100644 >> --- a/hw/9pfs/virtio-9p-device.c >> +++ b/hw/9pfs/virtio-9p-device.c >> @@ -12,11 +12,11 @@ >> */ >> >> #include "hw/virtio/virtio.h" >> +#include "hw/virtio/virtio-9p.h" >> #include "hw/i386/pc.h" >> #include "qemu/sockets.h" >> #include "virtio-9p.h" >> #include "fsdev/qemu-fsdev.h" >> -#include "virtio-9p-device.h" >> #include "virtio-9p-xattr.h" >> #include "virtio-9p-coth.h" >> >>