diff options
author | fche <fche> | 2005-08-25 00:46:38 +0000 |
---|---|---|
committer | fche <fche> | 2005-08-25 00:46:38 +0000 |
commit | 7e1279ea10e599ebadd117b6ee952dd582cb25ab (patch) | |
tree | 60db796db4e97456cb7981bf1f6a7afb135d32d5 /configure.ac | |
parent | cfb91814628cc727eca6c3060fba063d965e3a80 (diff) | |
download | systemtap-steved-7e1279ea10e599ebadd117b6ee952dd582cb25ab.tar.gz systemtap-steved-7e1279ea10e599ebadd117b6ee952dd582cb25ab.tar.xz systemtap-steved-7e1279ea10e599ebadd117b6ee952dd582cb25ab.zip |
2005-08-24 Frank Ch. Eigler <fche@elastic.org>
* configure.ac: Require elfutils 0.114.
* tapsets.cxx: Brought back graydon's changes.
* configure: Regenerated.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index c4fe7140..c9e32a94 100644 --- a/configure.ac +++ b/configure.ac @@ -22,16 +22,16 @@ AC_PROG_MAKE_SET AC_SUBST(CFLAGS) AC_SUBST(CXXFLAGS) -dnl Need libdwfl-capable elfutils 0.111 or later from Fedora +dnl Need libdwfl-capable recent elfutils from Fedora save_LIBS="$LIBS" -AC_CHECK_LIB(dw, dwfl_begin) +AC_CHECK_LIB(dw, dwarf_func_inline) stap_LIBS="$LIBS" LIBS="$SAVE_LIBS" AC_SUBST(stap_LIBS) -if test $ac_cv_lib_dw_dwfl_begin != yes +if test $ac_cv_lib_dw_dwarf_func_inline != yes then - AC_MSG_ERROR([systemtap requires elfutils 0.111+]) + AC_MSG_ERROR([systemtap requires elfutils 0.114+]) fi dnl Plop in the build (configure) date |