From: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
To: Avi Kivity <avi@redhat.com>,
Anthony Liguori <anthony@codemonkey.ws>,
qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 1.0 v2] configure: fix detection for xattr.h on modern distributions
Date: Wed, 09 Nov 2011 17:17:49 +0530 [thread overview]
Message-ID: <87sjlx7c0q.fsf@linux.vnet.ibm.com> (raw)
In-Reply-To: <87vcqt7c6g.fsf@linux.vnet.ibm.com>
On Wed, 09 Nov 2011 17:14:23 +0530, "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com> wrote:
> On Wed, 9 Nov 2011 12:33:58 +0200, Avi Kivity <avi@redhat.com> wrote:
> > 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>
> > ---
> >
> > v2: try for libc first, libattr second
> >
> > configure | 12 ++++++++++--
> > hw/9pfs/virtio-9p-handle.c | 2 +-
> > hw/9pfs/virtio-9p-local.c | 2 +-
> > hw/9pfs/virtio-9p-posix-acl.c | 2 +-
> > hw/9pfs/virtio-9p-xattr.h | 2 +-
> > linux-user/syscall.c | 2 +-
> > qemu-xattr.h | 30 ++++++++++++++++++++++++++++++
> > 7 files changed, 45 insertions(+), 7 deletions(-)
> > create mode 100644 qemu-xattr.h
> >
> > diff --git a/configure b/configure
> > index 9e5da44..401d9a6 100755
> > --- a/configure
> > +++ b/configure
> > @@ -129,6 +129,7 @@ xen=""
> > xen_ctrl_version=""
> > linux_aio=""
> > attr=""
> > +libattr=""
> > xfs=""
> >
> > vhost_net="no"
> > @@ -1961,12 +1962,16 @@ if test "$attr" != "no" ; then
> > cat > $TMPC <<EOF
> > #include <stdio.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; }
> > 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
> > LIBS="-lattr $LIBS"
> > + libattr=yes
> > else
> > if test "$attr" = "yes" ; then
> > feature_not_found "ATTR"
> > @@ -3032,6 +3037,9 @@ fi
> > if test "$attr" = "yes" ; then
> > echo "CONFIG_ATTR=y" >> $config_host_mak
> > fi
> > +if test "$libattr" = "yes" ; then
> > + echo "CONFIG_LIBATTR=y" >> $config_host_mak
> > +fi
>
> Is this needed ? We are adding -lattr to LIBS if needed. What will
> CONFIG_LIBATTR helps us to achieve ?
>
Ignore that you are using that in qemu-xattr.h
-aneesh
next prev parent reply other threads:[~2011-11-09 11:48 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-09 10:33 [Qemu-devel] [PATCH 1.0 v2] configure: fix detection for xattr.h on modern distributions Avi Kivity
2011-11-09 11:44 ` Aneesh Kumar K.V
2011-11-09 11:47 ` Aneesh Kumar K.V [this message]
2011-11-09 12:41 ` Avi Kivity
2011-11-09 18:23 ` Stefan Weil
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87sjlx7c0q.fsf@linux.vnet.ibm.com \
--to=aneesh.kumar@linux.vnet.ibm.com \
--cc=anthony@codemonkey.ws \
--cc=avi@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.