summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Wielaard <mjw@redhat.com>2009-10-01 15:30:20 +0200
committerMark Wielaard <mjw@redhat.com>2009-10-01 15:33:48 +0200
commitd83ef3343a2949c4c13e2e17fa15360851e4ba30 (patch)
tree2e86813757497eb497a4b50f7999ebd715d7a886
parent903b9fcdc3f5bf294514376e2e428bd45c647290 (diff)
downloadsystemtap-steved-d83ef3343a2949c4c13e2e17fa15360851e4ba30.tar.gz
systemtap-steved-d83ef3343a2949c4c13e2e17fa15360851e4ba30.tar.xz
systemtap-steved-d83ef3343a2949c4c13e2e17fa15360851e4ba30.zip
Grapher support now also needs libglademm24-devel, version 2.6.7 or higher.
* configure.ac: Clarify fail/help string when gtkmm support wasn't found. * configure: Regenerated.
-rwxr-xr-xconfigure4
-rw-r--r--configure.ac2
2 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index f8c8cee9..8100b931 100755
--- a/configure
+++ b/configure
@@ -7534,8 +7534,8 @@ fi
fi
if test "x${have_gtkmm}" == "xno" -a x"$enable_grapher" == "xyes"; then
- { { $as_echo "$as_me:$LINENO: error: systemtap cannot find required gtkmm-2.4 libs (gtkmm24-devel may need to be installed)" >&5
-$as_echo "$as_me: error: systemtap cannot find required gtkmm-2.4 libs (gtkmm24-devel may need to be installed)" >&2;}
+ { { $as_echo "$as_me:$LINENO: error: systemtap cannot find required gtkmm/libglademm-2.4 libs (gtkmm24-devel and libglademm24-devel, version 2.6.7 or higher, may need to be installed)" >&5
+$as_echo "$as_me: error: systemtap cannot find required gtkmm/libglademm-2.4 libs (gtkmm24-devel and libglademm24-devel, version 2.6.7 or higher, may need to be installed)" >&2;}
{ (exit 1); exit 1; }; }
fi
diff --git a/configure.ac b/configure.ac
index ce16e9a0..f255bcff 100644
--- a/configure.ac
+++ b/configure.ac
@@ -304,7 +304,7 @@ AS_IF([test "x$enable_grapher" != xno],
dnl If the user explicitly said to enable the grapher, but we can't
dnl (since gtkmm isn't installed), error.
AS_IF([test "x${have_gtkmm}" == "xno" -a x"$enable_grapher" == "xyes"],
- AC_MSG_ERROR([systemtap cannot find required gtkmm-2.4 libs (gtkmm24-devel may need to be installed)]))
+ AC_MSG_ERROR([systemtap cannot find required gtkmm/libglademm-2.4 libs (gtkmm24-devel and libglademm24-devel, version 2.6.7 or higher, may need to be installed)]))
dnl If the user didn't say to disable the grapher, and gtkmm is
dnl installed, enable the grapher.
AM_CONDITIONAL([BUILD_GRAPHER], [test "x${have_gtkmm}" == "xyes" -a x"$enable_grapher" != "xno"])