summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorroland <roland>2006-04-05 05:20:14 +0000
committerroland <roland>2006-04-05 05:20:14 +0000
commit611010bf818d40e88e9fcba226bd49bfbadcca57 (patch)
tree764373d976b1bb9a822558aaa0c9935c1f452dbe /configure.ac
parent7f2884e8ec3ac0bba2c0a1188b73777decc6917d (diff)
downloadsystemtap-steved-611010bf818d40e88e9fcba226bd49bfbadcca57.tar.gz
systemtap-steved-611010bf818d40e88e9fcba226bd49bfbadcca57.tar.xz
systemtap-steved-611010bf818d40e88e9fcba226bd49bfbadcca57.zip
2006-04-04 Roland McGrath <roland@redhat.com>
* configure.ac: Bump version to 0.5.5. Require elfutils-0.120. * configure: Regenerated. * systemtap.spec.in: Likewise.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 99f2916c..dbca0f48 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
dnl configure.ac --- autoconf input file for systemtap
dnl Process this file with autoconf to produce a configure script.
-AC_INIT([systemtap], 0.5.4, systemtap@sources.redhat.com, systemtap)
+AC_INIT([systemtap], 0.5.5, systemtap@sources.redhat.com, systemtap)
AC_PREREQ(2.59)
AM_INIT_AUTOMAKE
@@ -37,8 +37,8 @@ AM_CONDITIONAL(BUILD_ELFUTILS, test $build_elfutils = yes)
if test $build_elfutils = no; then
# Need libdwfl-capable recent elfutils from Fedora
save_LIBS="$LIBS"
- AC_CHECK_LIB(dw, dwarf_diecu,,[
- AC_MSG_ERROR([systemtap requires elfutils 0.116+])])
+ AC_CHECK_LIB(dw, dwfl_version,,[
+ AC_MSG_ERROR([systemtap requires elfutils 0.120+])])
stap_LIBS="$LIBS"
LIBS="$SAVE_LIBS"
else