summaryrefslogtreecommitdiff
path: root/hw/9pfs/virtio-9p-handle.c
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2011-11-09 14:44:52 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2011-11-09 12:06:20 -0600
commit4f26f2b6f2fba52b13f4c2ad1790f46c96a0923e (patch)
tree60dd9786e1b5504d84a44a3c50f54ae31815cd1a /hw/9pfs/virtio-9p-handle.c
parent1bf6ccd372aeb8e1a36da35fa15cf24e42f7e0b7 (diff)
downloadqemu-4f26f2b6f2fba52b13f4c2ad1790f46c96a0923e.tar.gz
configure: fix detection for xattr.h on modern distributions
Modern distributions place xattr.h in /usr/include/sys, and fold libattr.so into libc. They also don't have an ENOATTR. Make configure detect this, and add a qemu-xattr.h file that directs the #include to the right place. Signed-off-by: Avi Kivity <avi@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/9pfs/virtio-9p-handle.c')
-rw-r--r--hw/9pfs/virtio-9p-handle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/9pfs/virtio-9p-handle.c b/hw/9pfs/virtio-9p-handle.c
index c38e0e7863..0a778b48c4 100644
--- a/hw/9pfs/virtio-9p-handle.c
+++ b/hw/9pfs/virtio-9p-handle.c
@@ -19,7 +19,7 @@
#include <grp.h>
#include <sys/socket.h>
#include <sys/un.h>
-#include <attr/xattr.h>
+#include "qemu-xattr.h"
#include <unistd.h>
#include <linux/fs.h>
#ifdef CONFIG_LINUX_MAGIC_H