From deb70e5d5df835c8a1fd6472551b6483f1231db7 Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Sat, 9 Jul 2011 15:00:43 +0200 Subject: [PATCH] systemMonitor: don't require a too new libgtop libgtop 2.28.3 is the first version to introduce introspection support, and it is enough for our needs. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ae7a0539..1067bc57 100644 --- a/configure.ac +++ b/configure.ac @@ -40,7 +40,7 @@ ENABLED_EXTENSIONS= for e in $enable_extensions; do case $e in systemMonitor) - PKG_CHECK_MODULES(GTOP, libgtop-2.0 >= 2.28.4, + PKG_CHECK_MODULES(GTOP, libgtop-2.0 >= 2.28.3, [ENABLED_EXTENSIONS="$ENABLED_EXTENSIONS $e"], [AC_MSG_WARN([libgtop-2.0 not found, disabling systemMonitor])]) ;;