diff options
| author | Avi Kivity | 2011-11-09 13:44:52 +0100 |
|---|---|---|
| committer | Anthony Liguori | 2011-11-09 19:06:20 +0100 |
| commit | 4f26f2b6f2fba52b13f4c2ad1790f46c96a0923e (patch) | |
| tree | 60dd9786e1b5504d84a44a3c50f54ae31815cd1a /linux-user/syscall.c | |
| parent | Clean up assertion in get_boot_devices_list() (diff) | |
| download | qemu-4f26f2b6f2fba52b13f4c2ad1790f46c96a0923e.tar.gz qemu-4f26f2b6f2fba52b13f4c2ad1790f46c96a0923e.tar.xz qemu-4f26f2b6f2fba52b13f4c2ad1790f46c96a0923e.zip | |
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 'linux-user/syscall.c')
| -rw-r--r-- | linux-user/syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 9f5da36021..f227097801 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -71,7 +71,7 @@ int __clone2(int (*fn)(void *), void *child_stack_base, #include <sys/epoll.h> #endif #ifdef CONFIG_ATTR -#include <attr/xattr.h> +#include "qemu-xattr.h" #endif #define termios host_termios |
