From c931ec8ab64f5b6667e28b0f64338643d4b9ed03 Mon Sep 17 00:00:00 2001 From: fche Date: Sun, 26 Nov 2006 23:28:15 +0000 Subject: 2006-11-26 Frank Ch. Eigler 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. --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'configure.ac') 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` -- cgit