diff options
author | trz <trz> | 2006-03-16 15:10:46 +0000 |
---|---|---|
committer | trz <trz> | 2006-03-16 15:10:46 +0000 |
commit | 6fc464b53a23c9f7e711b89e6de802422b19734b (patch) | |
tree | e4a442669651448acff291e135ad86fcc967d4ef /configure.ac | |
parent | 5b1cd012831a6b729422e34cf0ed616600613771 (diff) | |
download | systemtap-steved-6fc464b53a23c9f7e711b89e6de802422b19734b.tar.gz systemtap-steved-6fc464b53a23c9f7e711b89e6de802422b19734b.tar.xz systemtap-steved-6fc464b53a23c9f7e711b89e6de802422b19734b.zip |
revert relayfs version check changes
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/configure.ac b/configure.ac index e593233d..99f2916c 100644 --- a/configure.ac +++ b/configure.ac @@ -52,19 +52,8 @@ date=`date +%Y-%m-%d` AC_DEFINE_UNQUOTED(DATE, "$date", [Configuration/build date]) AC_SUBST(DATE, "$date") -uname_r=`uname -r` -relayfs_version_ge_4=0 -AC_CHECK_FILE(/lib/modules/$uname_r/build/include/linux/relayfs_fs.h, -[ - # grep needs the two tabs in the following line - if grep "RELAYFS_CHANNEL_VERSION [[456]]" /lib/modules/$uname_r/build/include/linux/relayfs_fs.h >/dev/null; then - relayfs_version_ge_4=1 - fi -]) -AC_SUBST(RELAYFS_VERSION_GE_4, "$relayfs_version_ge_4") - AC_CONFIG_HEADERS([config.h:config.in]) -AC_CONFIG_FILES(Makefile systemtap.spec stp_check stap.1 stapprobes.5 stapfuncs.5 stapex.5 runtime/transport/relayfs-config.h) +AC_CONFIG_FILES(Makefile systemtap.spec stp_check stap.1 stapprobes.5 stapfuncs.5 stapex.5) AC_OUTPUT if test $build_elfutils = yes; then |