diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-09-05 13:02:56 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-09-05 13:02:56 -0400 |
commit | 337cd273963410c9a1fa46b10287e72c146df054 (patch) | |
tree | a4973f13e83e241ed6c045eeb41bfd5e3a615a95 /configure.ac | |
parent | 6fa7bd6e70f8f6d783395399c92a9a13d24ce997 (diff) | |
download | systemtap-steved-337cd273963410c9a1fa46b10287e72c146df054.tar.gz systemtap-steved-337cd273963410c9a1fa46b10287e72c146df054.tar.xz systemtap-steved-337cd273963410c9a1fa46b10287e72c146df054.zip |
remove capabilities logic, cont'd
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/configure.ac b/configure.ac index 123ac657..294fabe1 100644 --- a/configure.ac +++ b/configure.ac @@ -161,9 +161,6 @@ if test "$enable_docs" == "yes"; then fi AM_CONDITIONAL([BUILD_DOCS], [test "x${have_latex}${have_dvips}${have_ps2pdf}${have_latex2html}" == "xyesyesyesyes" -a "$enable_docs" != "no"]) -AC_CHECK_HEADERS([sys/capability.h], , - [AC_MSG_ERROR([cannot find required libcap header (libcap-devel may need to be installed)])]) - dnl Handle elfutils. If '--with-elfutils=DIR' wasn't specified, used dnl the system's elfutils. build_elfutils=no @@ -215,16 +212,6 @@ x86_64) PROCFLAGS=-m64 ;; esac AC_SUBST([PROCFLAGS]) -# -lcap is used for staprun, so PROCFLAGS comes in to play -SAVE_LIBS="$LIBS" -SAVE_CFLAGS="$CFLAGS" -CFLAGS="$CFLAGS $PROCFLAGS" -AC_CHECK_LIB(cap, cap_init, [], [AC_MSG_ERROR(need $PROCFLAGS -lcap)]) -cap_LIBS="$LIBS" -AC_SUBST(cap_LIBS) -LIBS="$SAVE_LIBS" -CFLAGS="$SAVE_CFLAGS" - # Use tr1/unordered_map if available AC_LANG_PUSH(C++) AC_CHECK_HEADERS([tr1/unordered_map]) |