[gedit-plugins] More informative messages about failing dependencies
- From: Jesse van den Kieboom <jessevdk src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gedit-plugins] More informative messages about failing dependencies
- Date: Fri, 22 Aug 2014 18:07:10 +0000 (UTC)
commit f06b3b18df5b76ab277059d7a94af4d1d40de435
Author: Jesse van den Kieboom <jessevdk gmail com>
Date: Fri Aug 22 20:06:51 2014 +0200
More informative messages about failing dependencies
configure.ac | 20 +++++++++++++++++++-
1 files changed, 19 insertions(+), 1 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 2503942..ab0f521 100644
--- a/configure.ac
+++ b/configure.ac
@@ -142,15 +142,22 @@ then
AC_SUBST([DBUS_PYTHON_CFLAGS])
AC_SUBST([DBUS_PYTHON_LIBS])
+ AC_MSG_CHECKING([for synctex dependency dbus-python])
+ AC_MSG_RESULT($have_synctex)
+
if test "x$have_synctex" = "xyes"; then
PLUGINS="$PLUGINS synctex"
else
+ AC_MSG_RESULT([yes])
disabled_plugins="$disabled_plugins synctex (dbus-python not found)"
fi
+
# ================================================================
# Terminal (vte)
# ================================================================
+ AC_MSG_CHECKING([for terminal dependency vte])
+
if `$PYTHON -c "import gi; gi.require_version('Vte', '2.91')" 2>/dev/null`;
then
have_vte=yes
@@ -160,6 +167,9 @@ then
disabled_plugins="$disabled_plugins terminal (vte not found)"
fi
+ AC_MSG_RESULT($have_vte)
+
+
# ================================================================
# Dashboard (Zeitgeist)
# ================================================================
@@ -175,18 +185,23 @@ then
AC_MSG_RESULT($have_dashboard)
+
# ================================================================
# Charmap (Gucharmap)
# ================================================================
+ AC_MSG_CHECKING([for charmap dependency gucharmap])
if `$PYTHON -c "import gi; gi.require_version('Gucharmap', '2.90')" 2>/dev/null`;
then
have_gucharmap=yes
PLUGINS="$PLUGINS charmap"
else
have_gucharmap=no
- disabled_plugins="$disabled_plugins charmap (gucharmap not found)"
+ disabled_plugins="$disabled_plugins charmap (Gucharmap gi not found)"
fi
+ AC_MSG_RESULT($have_gucharmap)
+
+
# ================================================================
# Git (libgit2-glib)
# ================================================================
@@ -196,6 +211,9 @@ then
[have_git2=yes],
[have_git2=no])
+ AC_MSG_CHECKING([for git dependency libgit2-glib])
+ AC_MSG_RESULT($have_git2)
+
if test "x$have_git2" = "xyes"; then
PLUGINS="$PLUGINS git"
else
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]