• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisión0dba4897be3a458a419820f4598450907647c864 (tree)
Tiempo2020-01-10 21:18:09
AutorMarc-André Lureau <marcandre.lureau@redh...>
CommiterPeter Maydell

Log Message

configure: check for gdbus-codegen presence

Some distros ship gdbus-codegen separately for gio headers/pc...

Reported-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-id: 20200110112725.689401-1-marcandre.lureau@redhat.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>

Cambiar Resumen

Diferencia incremental

--- a/configure
+++ b/configure
@@ -3702,6 +3702,9 @@ if $pkg_config --atleast-version=$glib_req_ver gio-2.0; then
37023702 gio_cflags=$($pkg_config --cflags gio-2.0)
37033703 gio_libs=$($pkg_config --libs gio-2.0)
37043704 gdbus_codegen=$($pkg_config --variable=gdbus_codegen gio-2.0)
3705+ if [ ! -x "$gdbus_codegen" ]; then
3706+ gdbus_codegen=
3707+ fi
37053708 else
37063709 gio=no
37073710 fi