From: "Daniel P. Berrange" <berrange@redhat.com>
To: Kaleb KEITHLEY <kkeithle@redhat.com>
Cc: Kevin Wolf <kwolf@redhat.com>, Anand Avati <aavati@redhat.com>,
Stefan Hajnoczi <stefanha@gmail.com>,
qemu-devel@nongnu.org, Bharata B Rao <bharata@linux.vnet.ibm.com>,
devel <gluster-devel@nongnu.org>
Subject: Re: [Qemu-devel] [RFC PATCH v1 1/2] gluster: Use pkg-config to configure GlusterFS block driver
Date: Tue, 23 Jul 2013 13:14:06 +0100 [thread overview]
Message-ID: <20130723121406.GU2477@redhat.com> (raw)
In-Reply-To: <51EE721A.6010107@redhat.com>
On Tue, Jul 23, 2013 at 05:37:54PM +0530, Kaleb KEITHLEY wrote:
> On 07/23/2013 05:32 PM, Anand Avati wrote:
> >On 7/23/13 4:57 AM, Daniel P. Berrange wrote:
> >>On Fri, Jul 12, 2013 at 12:28:54PM +0530, Bharata B Rao wrote:
> >>>gluster: Use pkg-config to configure GlusterFS block driver
> >>>
> >>>Use pkg-config to determine the version and library dependency
> >>>for GlusterFS block driver.
> >>>
> >>>Signed-off-by: Bharata B Rao <bharata@linux.vnet.ibm.com>
> >>>---
> >>> configure | 20 +++++++-------------
> >>> 1 file changed, 7 insertions(+), 13 deletions(-)
> >>>
> >>>diff --git a/configure b/configure
> >>>index cb0f870..76adcb1 100755
> >>>--- a/configure
> >>>+++ b/configure
> >>>@@ -2566,23 +2566,17 @@ fi
> >>> ##########################################
> >>> # glusterfs probe
> >>> if test "$glusterfs" != "no" ; then
> >>>- cat > $TMPC <<EOF
> >>>-#include <glusterfs/api/glfs.h>
> >>>-int main(void) {
> >>>- (void) glfs_new("volume");
> >>>- return 0;
> >>>-}
> >>>-EOF
> >>>- glusterfs_libs="-lgfapi -lgfrpc -lgfxdr"
> >>>- if compile_prog "" "$glusterfs_libs" ; then
> >>>- glusterfs=yes
> >>>- libs_tools="$glusterfs_libs $libs_tools"
> >>>- libs_softmmu="$glusterfs_libs $libs_softmmu"
> >>>+ if $pkg_config --atleast-version=3 glusterfs-api >/dev/null 2>&1;
> >>>then
> >>>+ glusterfs="yes"
> >>>+ glusterfs_cflags=`$pkg_config --cflags glusterfs-api 2>/dev/null`
> >>>+ glusterfs_libs=`$pkg_config --libs glusterfs-api 2>/dev/null`
> >>>+ CFLAGS="$CFLAGS $glusterfs_cflags"
> >>>+ LIBS="$LIBS $glusterfs_libs"
> >>
> >>The glusterfs v 3.4 RPMs in Fedora do not include any pkg-config files.
> >>So with this change now in GIT, QEMU no longer detects support for
> >>glusterfs even though it is present.
> >>
> >>Has the min required glusterfs been increased to a new 3.5 version
> >>which does include pkg-config support ? If not, then I think this
> >>patch needs to be reverted, so that it does a non-pkg-config based
> >>check for glusterfs.
> >>
> >>Regards,
> >>Daniel
> >>
> >
> >Copying Kaleb.
> >
> >We should just include the pkg-config file in the Fedora RPM for
> >glusterfs if it already isn't.
>
> It's in the glusterfs-api-devel rpm:
>
> % rpm -ql glusterfs-api-devel
> /usr/include/glusterfs/api/glfs.h
> /usr/lib64/libgfapi.so
> /usr/lib64/pkgconfig/glusterfs-api.pc
Oooh, not the main glusterfs-devel RPM. Ok, ignore my earlier message
Daniel
--
|: http://berrange.com -o- http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org -o- http://virt-manager.org :|
|: http://autobuild.org -o- http://search.cpan.org/~danberr/ :|
|: http://entangle-photo.org -o- http://live.gnome.org/gtk-vnc :|
next prev parent reply other threads:[~2013-07-23 12:14 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-12 6:56 [Qemu-devel] [RFC PATCH v1 0/3] pkg-config and discard support for gluster driver Bharata B Rao
2013-07-12 6:58 ` [Qemu-devel] [RFC PATCH v1 1/2] gluster: Use pkg-config to configure GlusterFS block driver Bharata B Rao
2013-07-16 6:02 ` Stefan Hajnoczi
2013-07-16 6:04 ` Anand Avati
2013-07-16 8:25 ` Kevin Wolf
2013-07-16 11:34 ` Bharata B Rao
2013-07-23 11:57 ` Daniel P. Berrange
2013-07-23 12:02 ` Anand Avati
2013-07-23 12:03 ` Daniel P. Berrange
2013-07-23 12:07 ` Kaleb KEITHLEY
2013-07-23 12:14 ` Daniel P. Berrange [this message]
2013-07-12 7:00 ` [Qemu-devel] [RFC PATCH v1 2/2] gluster: Add discard support for " Bharata B Rao
2013-07-16 6:05 ` Stefan Hajnoczi
2013-07-16 8:29 ` Kevin Wolf
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=20130723121406.GU2477@redhat.com \
--to=berrange@redhat.com \
--cc=aavati@redhat.com \
--cc=bharata@linux.vnet.ibm.com \
--cc=gluster-devel@nongnu.org \
--cc=kkeithle@redhat.com \
--cc=kwolf@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@gmail.com \
/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).