diff options
author | fche <fche> | 2005-07-28 22:12:59 +0000 |
---|---|---|
committer | fche <fche> | 2005-07-28 22:12:59 +0000 |
commit | b2d5d95caa573e486b6503406b688da824cd20a9 (patch) | |
tree | 1f7cdb599d5d70d392ac6396c47094aa59e6283e /configure.ac | |
parent | 1c2aeef9fee160bf4d6ec9fe6d4cc8d31788f0df (diff) | |
download | systemtap-steved-b2d5d95caa573e486b6503406b688da824cd20a9.tar.gz systemtap-steved-b2d5d95caa573e486b6503406b688da824cd20a9.tar.xz systemtap-steved-b2d5d95caa573e486b6503406b688da824cd20a9.zip |
2005-07-28 Frank Ch. Eigler <fche@redhat.com>
* stap.1: Beginnings of a man page.
* Makefile.am: Install it. Comment out stpd LDADD goodies.
* configure.ac: Futilely complain about non-stpd LIBS.
* Makefile.in, configure.in: Regenerated.
* main.cxx (usage): Remove ARGS from help text, as nothing is
done with these yet.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 00411023..05040698 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.1.1, systemtap@sources.redhat.com, systemtap) +AC_INIT([systemtap], 0.2, systemtap@sources.redhat.com, systemtap) AC_PREREQ(2.59) AM_INIT_AUTOMAKE @@ -23,6 +23,8 @@ AC_SUBST(CFLAGS) AC_SUBST(CXXFLAGS) dnl Need libdwfl-capable elfutils 0.102+ from <drepper@redhat.com> +dnl ... except that these libraries are only used by stap, not +dnl stpd. The implicit LIBS set from these is too broadly applied. AC_CHECK_HEADERS([libelf.h elfutils/libdw.h elfutils/libdwfl.h]) AC_CHECK_LIB(dw, dwarf_begin) AC_CHECK_LIB(elf, elf_begin) |