summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorgraydon <graydon>2005-06-21 00:55:12 +0000
committergraydon <graydon>2005-06-21 00:55:12 +0000
commitbd2b1e6816b486d5c85a4693f0b3579df4376ed5 (patch)
treedf448059a9ab7ef96da21972afa47b3f165e021d /configure.ac
parent2d7f5dfb3ea63f301341a1b63c3dfa293a3abfce (diff)
downloadsystemtap-steved-bd2b1e6816b486d5c85a4693f0b3579df4376ed5.tar.gz
systemtap-steved-bd2b1e6816b486d5c85a4693f0b3579df4376ed5.tar.xz
systemtap-steved-bd2b1e6816b486d5c85a4693f0b3579df4376ed5.zip
2005-06-20 Graydon Hoare <graydon@redhat.com>
* configure.ac: Scan for libdwfl. * staptree.h (verbose): New global. * main.cxx (usage, main): Implement -v option. * tapsets.cxx (dwflpp): New struct. (query_statement): New function. (query_function): New function. (query_cu): New function. (query_module): New function. (dwarf_derived_probe): Implement primary forms.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 31b5f745..ee75b2c6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,9 +23,10 @@ AC_SUBST(CFLAGS)
AC_SUBST(CXXFLAGS)
dnl Need elfutils 0.102+ from <drepper@redhat.com>
-AC_CHECK_HEADERS([libelf.h elfutils/libdw.h])
+AC_CHECK_HEADERS([libelf.h elfutils/libdw.h elfutils/libdwfl.h])
AC_CHECK_LIB(dw, dwarf_begin)
AC_CHECK_LIB(elf, elf_begin)
+AC_CHECK_LIB(dwfl, dwfl_begin)
dnl Plop in the build (configure) date
date=`date +%Y-%m-%d`