diff options
author | fche <fche> | 2006-11-26 23:28:15 +0000 |
---|---|---|
committer | fche <fche> | 2006-11-26 23:28:15 +0000 |
commit | c931ec8ab64f5b6667e28b0f64338643d4b9ed03 (patch) | |
tree | 80b739d8a696c6acc3ce26853ebc9c8de603c52f /configure.ac | |
parent | cc7d24cd109128d558445507e508f5b43906ef16 (diff) | |
download | systemtap-steved-c931ec8ab64f5b6667e28b0f64338643d4b9ed03.tar.gz systemtap-steved-c931ec8ab64f5b6667e28b0f64338643d4b9ed03.tar.xz systemtap-steved-c931ec8ab64f5b6667e28b0f64338643d4b9ed03.zip |
2006-11-26 Frank Ch. Eigler <fche@redhat.com>
PRs 2685, 3596, toward 2725.
* tapsets.cxx (common_probe_entryfn_prologue): Skip probe on
insufficient stack.
(build_blacklist): Add a slew of lock-related calls.
(query_module): Check for debuginfo architecture match.
* translate.cxx (translate_pass): Add default MINSTACKSPACE.
* configure.ac: Link stap with -lebl too.
* configure: Regenerated.
* stap.1.in: Document MINSTACKSPACE parameter.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 5ff48549..ea3b61da 100644 --- a/configure.ac +++ b/configure.ac @@ -101,13 +101,16 @@ if test $build_elfutils = no; then save_LIBS="$LIBS" AC_CHECK_LIB(dw, dwfl_module_getsym,,[ AC_MSG_ERROR([systemtap requires elfutils 0.123+])]) + AC_CHECK_LIB(ebl, ebl_openbackend,,[ + AC_MSG_ERROR([systemtap requires elfutils 0.123+])]) stap_LIBS="$LIBS" LIBS="$SAVE_LIBS" else # We built our own and stap_LDFLAGS points at the install. - stap_LIBS=-ldw + stap_LIBS="-ldw -lebl" fi AC_SUBST(stap_LIBS) +AC_MSG_NOTICE([stap will link $stap_LIBS]) dnl Plop in the build (configure) date date=`date +%Y-%m-%d` |