diff options
author | dsmith <dsmith> | 2008-01-24 20:24:03 +0000 |
---|---|---|
committer | dsmith <dsmith> | 2008-01-24 20:24:03 +0000 |
commit | 7ae8037e595d8da298c83cdc059db6ac5b68d8dc (patch) | |
tree | d548cec6593861a461868232cd994dd36bbf49f4 /configure.ac | |
parent | 9921a199dd3d8bfce4cd2e4c95e17119903588ea (diff) | |
download | systemtap-steved-7ae8037e595d8da298c83cdc059db6ac5b68d8dc.tar.gz systemtap-steved-7ae8037e595d8da298c83cdc059db6ac5b68d8dc.tar.xz systemtap-steved-7ae8037e595d8da298c83cdc059db6ac5b68d8dc.zip |
2008-01-24 David Smith <dsmith@redhat.com>
PR 5661 (reverted).
* configure.ac: Removed elfutils version number check.
* configure: Regenerated.
* acsite.m4: Removed.
* systemtap.spec.in: Minimum elfutils version number is no longer
filled in by configure.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/configure.ac b/configure.ac index 79812c7b..f53fca84 100644 --- a/configure.ac +++ b/configure.ac @@ -4,9 +4,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT([systemtap], 0.6.1, systemtap@sources.redhat.com, systemtap) dnl ^^^ see also NEWS, testsuite/configure.ac -dnl Version number of oldest elfutils release that works with systemtap. -AC_SUBST(ELFUTILS_REQUIRED_VERSION, 0.127) - AC_PREREQ(2.59) AM_INIT_AUTOMAKE AM_MAINTAINER_MODE @@ -27,8 +24,6 @@ AC_PROG_MAKE_SET AC_SUBST(CFLAGS) AC_SUBST(CXXFLAGS) - - dnl enable option to generate code for using perfmon AC_ARG_ENABLE(perfmon, [ --enable-perfmon enable perfmon support (default is disabled)], @@ -139,30 +134,6 @@ if test $build_elfutils = no; then AC_CHECK_LIB(ebl, ebl_openbackend,,[ AC_MSG_ERROR([missing elfutils development headers/libraries (ebl 0.123+)])]) - # Try to get the elfutils library version - AC_MSG_CHECKING([to see if we can get the elfutils version]) - AX_ELFUTILS_GET_VERSION(, [ - AC_MSG_FAILURE([unable to get elfutils library version])]) - - # Is the elfutils library version >= ELFUTILS_REQUIRED_VERSION? - AC_MSG_CHECKING([for elfutils version $ELFUTILS_REQUIRED_VERSION or higher]) - [current_version="`echo \"$ax_elfutils_get_version_VERSION\" | sed -e 's/^[^0-9]//g'`"] - if test -z "$current_version" ; then - AC_MSG_FAILURE([unsupported elfutils version format]) - fi - - AS_VERSION_COMPARE($current_version, $ELFUTILS_REQUIRED_VERSION, - [bad_elfutils_version=yes], dnl ACTION-IF-LESS - [bad_elfutils_version=no], dnl ACTION-IF-EQUAL - [bad_elfutils_version=no]) dnl ACTION-IF-GREATER - - if test $bad_elfutils_version = yes; then - AC_MSG_RESULT([no]) - AC_MSG_ERROR([elfutils library version ($current_version) must be version $ELFUTILS_REQUIRED_VERSION or higher]) - else - AC_MSG_RESULT([yes]) - fi - stap_LIBS="$LIBS" LIBS="$SAVE_LIBS" else |