From: Avi Kivity <avi@redhat.com>
To: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 1.0] configure: fix detection for xattr.h on modern distributions
Date: Wed, 09 Nov 2011 12:23:49 +0200 [thread overview]
Message-ID: <4EBA54B5.1020903@redhat.com> (raw)
In-Reply-To: <8762it93rv.fsf@linux.vnet.ibm.com>
On 11/09/2011 09:03 AM, Aneesh Kumar K.V wrote:
> On Tue, 8 Nov 2011 16:23:50 +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>
> > ---
> > configure | 8 ++++++++
> > 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, 43 insertions(+), 5 deletions(-)
> > create mode 100644 qemu-xattr.h
> >
> > diff --git a/configure b/configure
> > index 9e5da44..5158015 100755
> > --- a/configure
> > +++ b/configure
> > @@ -129,6 +129,7 @@ xen=""
> > xen_ctrl_version=""
> > linux_aio=""
> > attr=""
> > +attr_in_sys=""
> > xfs=""
> >
> > vhost_net="no"
> > @@ -1967,6 +1968,10 @@ EOF
> > if compile_prog "" "-lattr" ; then
> > attr=yes
> > LIBS="-lattr $LIBS"
> > + # On Fedora 15, there is no attr/xattr.h, and no -lattr:
> > + elif sed -i s,attr/,sys/, $TMPC && compile_prog "" "" ; then
>
>
> But Fedora 15 also provide
>
> libattr-2.4.44-7.fc15.x86_64
> libattr-devel-2.4.44-7.fc15.x86_64
>
> I guess we should first check whether sys/xattr.h is available and then
> check for libattr.so. That will avoid linking qemu to libattr if xattr
> functions are provided by libc
>
>
Oh, I missed that. And so did Fedora - it's qemu-kvm doesn't provide
virtfs for that reason.
--
error compiling committee.c: too many arguments to function
prev parent reply other threads:[~2011-11-09 10:24 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-08 14:23 [Qemu-devel] [PATCH 1.0] configure: fix detection for xattr.h on modern distributions Avi Kivity
2011-11-09 7:03 ` Aneesh Kumar K.V
2011-11-09 10:23 ` Avi Kivity [this message]
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=4EBA54B5.1020903@redhat.com \
--to=avi@redhat.com \
--cc=aneesh.kumar@linux.vnet.ibm.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).