diff options
author | fche <fche> | 2005-09-06 18:11:41 +0000 |
---|---|---|
committer | fche <fche> | 2005-09-06 18:11:41 +0000 |
commit | bcc127102e186d23dea9915a235b04166836cac3 (patch) | |
tree | 45b028f328a81fd500f3bd9888db594c1dbb1a07 /configure.ac | |
parent | 11eb4a886616c6ec029fe418576b6888dd0a3b62 (diff) | |
download | systemtap-steved-bcc127102e186d23dea9915a235b04166836cac3.tar.gz systemtap-steved-bcc127102e186d23dea9915a235b04166836cac3.tar.xz systemtap-steved-bcc127102e186d23dea9915a235b04166836cac3.zip |
2005-09-06 Frank Ch. Eigler <fche@elastic.org>
* configure.ac: Require elfutils 0.115+.
* tapsets.cxx: Restore graydon's PR 1244 code.
* testsuite/buildok/eighteen.stp: Correct typing.
* configure: Regenerated.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 2 insertions, 6 deletions
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]) |