summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2008-09-10 14:54:45 -0400
committerDave Brolley <brolley@redhat.com>2008-09-10 14:54:45 -0400
commitae8b5b85fe489b400022c339c907806fc6dc55ae (patch)
tree538f91abd3ba54fb1140843e66218f9c1f720990 /configure.ac
parentdba1a9ba98963d079124f94a6a2af00cbbf6c06d (diff)
parent87cb1275ba9c62c9a04cb6babcccbe295d24c556 (diff)
downloadsystemtap-steved-ae8b5b85fe489b400022c339c907806fc6dc55ae.tar.gz
systemtap-steved-ae8b5b85fe489b400022c339c907806fc6dc55ae.tar.xz
systemtap-steved-ae8b5b85fe489b400022c339c907806fc6dc55ae.zip
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 294fabe1..4a30bc99 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8,7 +8,7 @@ AC_PREREQ(2.59)
AM_INIT_AUTOMAKE
AM_MAINTAINER_MODE
-AC_PROG_MKDIR_P
+AM_PROG_MKDIR_P
AC_PROG_LN_S
AC_PROG_CC
AC_PROG_CXX
@@ -183,6 +183,9 @@ if test $build_elfutils = no; then
AC_CHECK_LIB(dw, dwfl_module_getsym,[],[
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])
+ AC_CHECK_LIB(dw, dwarf_getelf,[],[
+ AC_MSG_ERROR([elfutils, libdw too old, need 0.126+])],
+ [-Wl,--start-group -ldw -lebl -Wl,--end-group -lelf])
stap_LIBS="-Wl,--start-group -ldw -lebl -Wl,--end-group -lelf"
LIBS="$save_LIBS"
else