diff options
author | fche <fche> | 2007-02-09 13:45:49 +0000 |
---|---|---|
committer | fche <fche> | 2007-02-09 13:45:49 +0000 |
commit | 44f753868fd81e3b5c614acc3a4898d5c812a610 (patch) | |
tree | 459dbe716908765a6d0c36fcb71812d7a30eb2d1 /configure.ac | |
parent | 7d678473f851dadc2f5a4f6fe1a0bc7635750585 (diff) | |
download | systemtap-steved-44f753868fd81e3b5c614acc3a4898d5c812a610.tar.gz systemtap-steved-44f753868fd81e3b5c614acc3a4898d5c812a610.tar.xz systemtap-steved-44f753868fd81e3b5c614acc3a4898d5c812a610.zip |
2007-02-09 Frank Ch. Eigler <fche@elastic.org>
PR 3965
* configure.ac: Add --enable-prologue option.
* configure, config.in: Regenerated.
* session.h (prologue_searching): New field.
* main.cxx (main): Parse new "-P" option. Initialize based on
autoconf flag.
* stap.1.in, NEWS: Document it.
* hash.cxx (find_hash): Include it in computation.
* tapsets.cxx (query_func_info, query_cu): Respect it.
2007-02-09 Frank Ch. Eigler <fche@elastic.org>
* systemtap.base/prologue.*: New test case.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 60807c56..59b7b34d 100644 --- a/configure.ac +++ b/configure.ac @@ -48,6 +48,10 @@ if test $perfmon_support = yes; then LDFLAGS="$LDFLAGS -DPERFMON -L$with_perfmon/lib -lpfm" fi +AC_ARG_ENABLE(prologues, + AC_HELP_STRING([--enable-prologues],[make -P prologue-searching default]), + AC_DEFINE([ENABLE_PROLOGUES],[],[make -P prologue-searching default])) + build_elfutils=no AC_ARG_WITH([elfutils], AC_HELP_STRING([--with-elfutils=DIRECTORY], |