diff options
author | roland <roland> | 2005-10-31 22:09:30 +0000 |
---|---|---|
committer | roland <roland> | 2005-10-31 22:09:30 +0000 |
commit | 20e4a32c0892eebbb417cbb914e01ed4db1697b6 (patch) | |
tree | 49b4927f5dbb4aedf88de44a4ce488e30cc32e56 /configure.ac | |
parent | b4e1e09cca183a8cb9879511e9a5b5e53d8c90d5 (diff) | |
download | systemtap-steved-20e4a32c0892eebbb417cbb914e01ed4db1697b6.tar.gz systemtap-steved-20e4a32c0892eebbb417cbb914e01ed4db1697b6.tar.xz systemtap-steved-20e4a32c0892eebbb417cbb914e01ed4db1697b6.zip |
2005-10-31 Roland McGrath <roland@redhat.com>
* configure.ac: Update libdw test to require 0.116 with dwarf_diecu.
* configure: Regenerated.
* systemtap.spec.in: Update elfutils requirement to 0.116.
* loc2c.c: Dwarf_Loc -> Dwarf_Op.
(location_from_address): dwarf_addrloclists -> dwarf_getlocation_addr.
(c_translate_location): Likewise.
(max_fetch_size): Remove fakeo dwarf_diecu macro.
* tapsets.cxx (dwflpp): Dwarf_Func -> Dwarf_Die;
dwarf_func_name -> dwarf_diename;
dwarf_func_entrypc -> dwarf_entrypc;
dwarf_func_file, dwarf_func_line -> dwarf_decl_file, dwarf_decl_line.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index bc70b188..4212afce 100644 --- a/configure.ac +++ b/configure.ac @@ -24,8 +24,8 @@ AC_SUBST(CXXFLAGS) dnl Need libdwfl-capable recent elfutils from Fedora save_LIBS="$LIBS" -AC_CHECK_LIB(dw, dwarf_getscopes_die,,[ - AC_MSG_ERROR([systemtap requires elfutils 0.115+])]) +AC_CHECK_LIB(dw, dwarf_diecu,,[ + AC_MSG_ERROR([systemtap requires elfutils 0.116+])]) stap_LIBS="$LIBS" LIBS="$SAVE_LIBS" AC_SUBST(stap_LIBS) |