From: "Marc-André Lureau" <marcandre.lureau@redhat.com>
To: qemu-devel@nongnu.org
Cc: berrange@redhat.com, quintela@redhat.com, mprivozn@redhat.com,
dgilbert@redhat.com,
"Marc-André Lureau" <marcandre.lureau@redhat.com>,
pbonzini@redhat.com
Subject: [PATCH v5 6/8] configure: add GDBUS_CODEGEN
Date: Fri, 4 Oct 2019 14:20:49 +0400 [thread overview]
Message-ID: <20191004102051.19738-7-marcandre.lureau@redhat.com> (raw)
In-Reply-To: <20191004102051.19738-1-marcandre.lureau@redhat.com>
gdbus-codegen generated code requires gio-unix on Unix, so add it to
GIO libs/cflags.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
configure | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/configure b/configure
index 8f8446f52b..412e40cc03 100755
--- a/configure
+++ b/configure
@@ -3631,10 +3631,16 @@ if $pkg_config --atleast-version=$glib_req_ver gio-2.0; then
gio=yes
gio_cflags=$($pkg_config --cflags gio-2.0)
gio_libs=$($pkg_config --libs gio-2.0)
+ gdbus_codegen=$($pkg_config --variable=gdbus_codegen gio-2.0)
else
gio=no
fi
+if $pkg_config --atleast-version=$glib_req_ver gio-unix-2.0; then
+ gio_cflags="$gio_cflags $($pkg_config --cflags gio-unix-2.0)"
+ gio_libs="$gio_libs $($pkg_config --libs gio-unix-2.0)"
+fi
+
# Sanity check that the current size_t matches the
# size that glib thinks it should be. This catches
# problems on multi-arch where people try to build
@@ -6782,6 +6788,7 @@ if test "$gio" = "yes" ; then
echo "CONFIG_GIO=y" >> $config_host_mak
echo "GIO_CFLAGS=$gio_cflags" >> $config_host_mak
echo "GIO_LIBS=$gio_libs" >> $config_host_mak
+ echo "GDBUS_CODEGEN=$gdbus_codegen" >> $config_host_mak
fi
echo "CONFIG_TLS_PRIORITY=\"$tls_priority\"" >> $config_host_mak
if test "$gnutls" = "yes" ; then
--
2.23.0
next prev parent reply other threads:[~2019-10-04 11:28 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-04 10:20 [PATCH v5 0/8] Add dbus-vmstate Marc-André Lureau
2019-10-04 10:20 ` [PATCH v5 1/8] vmstate: add qom interface to get id Marc-André Lureau
2019-10-04 10:20 ` [PATCH v5 2/8] vmstate: replace DeviceState with VMStateIf Marc-André Lureau
2019-10-04 10:20 ` [PATCH v5 3/8] docs: start a document to describe D-Bus usage Marc-André Lureau
2019-10-04 10:20 ` [PATCH v5 4/8] util: add dbus helper unit Marc-André Lureau
2019-10-04 10:20 ` [PATCH v5 5/8] Add dbus-vmstate object Marc-André Lureau
2019-10-04 10:20 ` Marc-André Lureau [this message]
2019-10-04 10:20 ` [PATCH v5 7/8] dockerfiles: add dbus-daemon to some of latest distributions Marc-André Lureau
2019-10-04 10:20 ` [PATCH v5 8/8] tests: add dbus-vmstate-test Marc-André Lureau
2019-10-24 14:14 ` [PATCH v5 0/8] Add dbus-vmstate Marc-André Lureau
2019-11-29 8:47 ` Marc-André Lureau
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=20191004102051.19738-7-marcandre.lureau@redhat.com \
--to=marcandre.lureau@redhat.com \
--cc=berrange@redhat.com \
--cc=dgilbert@redhat.com \
--cc=mprivozn@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.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).