summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMark Wielaard <mjw@redhat.com>2008-08-16 21:20:03 +0200
committerMark Wielaard <mjw@redhat.com>2008-08-16 21:20:03 +0200
commit8d4b1ab0732bd51e4b8f1e7cdb2550a9d67f21bc (patch)
treedeee896f2a66f640bf6497e88b93f380590f2f9f /configure.ac
parent3fa5cd6a40695472e3752dce17b5a438f8a830fa (diff)
downloadsystemtap-steved-8d4b1ab0732bd51e4b8f1e7cdb2550a9d67f21bc.tar.gz
systemtap-steved-8d4b1ab0732bd51e4b8f1e7cdb2550a9d67f21bc.tar.xz
systemtap-steved-8d4b1ab0732bd51e4b8f1e7cdb2550a9d67f21bc.zip
Mention distro specific elfutils development sub-packages needed when not found.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 5a5a0930..084e457c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -181,10 +181,10 @@ AC_SUBST(elfutils_abs_srcdir, `AS_IF([test $build_elfutils = yes],
[cd $with_elfutils && pwd])`)
if test $build_elfutils = no; then
- # Need libdwfl-capable recent elfutils from Fedora
+ # Need libdwfl-capable recent elfutils http://elfutils.fedorahosted.org/
save_LIBS="$LIBS"
AC_CHECK_LIB(dw, dwfl_module_getsym,[],[
- AC_MSG_ERROR([missing elfutils development headers/libraries (dw 0.123+) (libebl-devel may need to be installed)])],
+ AC_MSG_ERROR([missing elfutils development headers/libraries (install elfutils-devel, libebl-dev, libdw-dev and/or libebl-devel)])],
[-Wl,--start-group -ldw -lebl -Wl,--end-group -lelf])
stap_LIBS="-Wl,--start-group -ldw -lebl -Wl,--end-group -lelf"
LIBS="$save_LIBS"