From bcc127102e186d23dea9915a235b04166836cac3 Mon Sep 17 00:00:00 2001 From: fche Date: Tue, 6 Sep 2005 18:11:41 +0000 Subject: 2005-09-06 Frank Ch. Eigler * configure.ac: Require elfutils 0.115+. * tapsets.cxx: Restore graydon's PR 1244 code. * testsuite/buildok/eighteen.stp: Correct typing. * configure: Regenerated. --- configure.ac | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 6730879c..410e4d3d 100644 --- a/configure.ac +++ b/configure.ac @@ -24,16 +24,12 @@ AC_SUBST(CXXFLAGS) dnl Need libdwfl-capable recent elfutils from Fedora save_LIBS="$LIBS" -AC_CHECK_LIB(dw, dwarf_func_inline) +AC_CHECK_LIB(dw, dwarf_getscopes_die,,[ + AC_MSG_ERROR([systemtap requires elfutils 0.115+])]) stap_LIBS="$LIBS" LIBS="$SAVE_LIBS" AC_SUBST(stap_LIBS) -if test $ac_cv_lib_dw_dwarf_func_inline != yes -then - AC_MSG_ERROR([systemtap requires elfutils 0.114+]) -fi - dnl Plop in the build (configure) date date=`date +%Y-%m-%d` AC_DEFINE_UNQUOTED(DATE, "$date", [Configuration/build date]) -- cgit