mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-08 07:40:34 +00:00
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>
This commit is contained in:
parent
1bf6ccd372
commit
4f26f2b6f2
12
configure
vendored
12
configure
vendored
@ -129,6 +129,7 @@ xen=""
|
|||||||
xen_ctrl_version=""
|
xen_ctrl_version=""
|
||||||
linux_aio=""
|
linux_aio=""
|
||||||
attr=""
|
attr=""
|
||||||
|
libattr=""
|
||||||
xfs=""
|
xfs=""
|
||||||
|
|
||||||
vhost_net="no"
|
vhost_net="no"
|
||||||
@ -1961,12 +1962,16 @@ if test "$attr" != "no" ; then
|
|||||||
cat > $TMPC <<EOF
|
cat > $TMPC <<EOF
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <attr/xattr.h>
|
#include <sys/xattr.h>
|
||||||
int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
|
int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }
|
||||||
EOF
|
EOF
|
||||||
if compile_prog "" "-lattr" ; then
|
if compile_prog "" "" ; then
|
||||||
|
attr=yes
|
||||||
|
# Older distros have <attr/xattr.h>, and need -lattr:
|
||||||
|
elif sed -i s,sys/xattr,attr/xattr, $TMPC && compile_prog "" "-lattr" ; then
|
||||||
attr=yes
|
attr=yes
|
||||||
LIBS="-lattr $LIBS"
|
LIBS="-lattr $LIBS"
|
||||||
|
libattr=yes
|
||||||
else
|
else
|
||||||
if test "$attr" = "yes" ; then
|
if test "$attr" = "yes" ; then
|
||||||
feature_not_found "ATTR"
|
feature_not_found "ATTR"
|
||||||
@ -3032,6 +3037,9 @@ fi
|
|||||||
if test "$attr" = "yes" ; then
|
if test "$attr" = "yes" ; then
|
||||||
echo "CONFIG_ATTR=y" >> $config_host_mak
|
echo "CONFIG_ATTR=y" >> $config_host_mak
|
||||||
fi
|
fi
|
||||||
|
if test "$libattr" = "yes" ; then
|
||||||
|
echo "CONFIG_LIBATTR=y" >> $config_host_mak
|
||||||
|
fi
|
||||||
if test "$linux" = "yes" ; then
|
if test "$linux" = "yes" ; then
|
||||||
if test "$attr" = "yes" ; then
|
if test "$attr" = "yes" ; then
|
||||||
echo "CONFIG_VIRTFS=y" >> $config_host_mak
|
echo "CONFIG_VIRTFS=y" >> $config_host_mak
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
#include <grp.h>
|
#include <grp.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <sys/un.h>
|
#include <sys/un.h>
|
||||||
#include <attr/xattr.h>
|
#include "qemu-xattr.h"
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <linux/fs.h>
|
#include <linux/fs.h>
|
||||||
#ifdef CONFIG_LINUX_MAGIC_H
|
#ifdef CONFIG_LINUX_MAGIC_H
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
#include <grp.h>
|
#include <grp.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <sys/un.h>
|
#include <sys/un.h>
|
||||||
#include <attr/xattr.h>
|
#include "qemu-xattr.h"
|
||||||
#include <linux/fs.h>
|
#include <linux/fs.h>
|
||||||
#ifdef CONFIG_LINUX_MAGIC_H
|
#ifdef CONFIG_LINUX_MAGIC_H
|
||||||
#include <linux/magic.h>
|
#include <linux/magic.h>
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <attr/xattr.h>
|
#include "qemu-xattr.h"
|
||||||
#include "hw/virtio.h"
|
#include "hw/virtio.h"
|
||||||
#include "virtio-9p.h"
|
#include "virtio-9p.h"
|
||||||
#include "fsdev/file-op-9p.h"
|
#include "fsdev/file-op-9p.h"
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
#ifndef _QEMU_VIRTIO_9P_XATTR_H
|
#ifndef _QEMU_VIRTIO_9P_XATTR_H
|
||||||
#define _QEMU_VIRTIO_9P_XATTR_H
|
#define _QEMU_VIRTIO_9P_XATTR_H
|
||||||
|
|
||||||
#include <attr/xattr.h>
|
#include "qemu-xattr.h"
|
||||||
|
|
||||||
typedef struct xattr_operations
|
typedef struct xattr_operations
|
||||||
{
|
{
|
||||||
|
@ -71,7 +71,7 @@ int __clone2(int (*fn)(void *), void *child_stack_base,
|
|||||||
#include <sys/epoll.h>
|
#include <sys/epoll.h>
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_ATTR
|
#ifdef CONFIG_ATTR
|
||||||
#include <attr/xattr.h>
|
#include "qemu-xattr.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define termios host_termios
|
#define termios host_termios
|
||||||
|
30
qemu-xattr.h
Normal file
30
qemu-xattr.h
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
/*
|
||||||
|
* Host xattr.h abstraction
|
||||||
|
*
|
||||||
|
* Copyright 2011 Red Hat Inc. and/or its affiliates
|
||||||
|
*
|
||||||
|
* Authors:
|
||||||
|
* Avi Kivity <avi@redhat.com>
|
||||||
|
*
|
||||||
|
* This work is licensed under the terms of the GNU GPL, version 2, or any
|
||||||
|
* later version. See the COPYING file in the top-level directory.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#ifndef QEMU_XATTR_H
|
||||||
|
#define QEMU_XATTR_H
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Modern distributions (e.g. Fedora 15, have no libattr.so, place attr.h
|
||||||
|
* in /usr/include/sys, and don't have ENOATTR.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "config-host.h"
|
||||||
|
|
||||||
|
#ifdef CONFIG_LIBATTR
|
||||||
|
# include <attr/xattr.h>
|
||||||
|
#else
|
||||||
|
# define ENOATTR ENODATA
|
||||||
|
# include <sys/xattr.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue
Block a user