]> sourceware.org Git - systemtap.git/blob - testsuite/configure.ac
bump version to 2.8 and autoreconf
[systemtap.git] / testsuite / configure.ac
1 dnl configure.ac --- autoconf input file for systemtap testsuite
2 dnl Process this file with autoconf to produce a configure script.
3
4 AC_INIT([systemtap], 2.8, systemtap@sourceware.org, systemtap)
5
6 AC_PREREQ(2.59)
7 AC_CONFIG_AUX_DIR(..)
8 AM_INIT_AUTOMAKE([dejagnu foreign])
9 AM_MAINTAINER_MODE
10
11 AC_ARG_ENABLE([dejazilla],
12 AS_HELP_STRING([--enable-dejazilla@<:@=EMAIL@:>@],
13 [enable dejazilla support to automatically email test results to a
14 central public collection point (default is disabled). Optional
15 EMAIL overrides the default email address.]))
16 case "$enable_dejazilla" in
17 no) dejazilla= ;;
18 yes) dejazilla=dejazilla@elastic.org ;;
19 *) dejazilla="$enable_dejazilla" ;;
20 esac
21 if test -n "$dejazilla"; then
22 AC_MSG_NOTICE([A "make *check" will email results to $dejazilla])
23 fi
24 AC_SUBST(dejazilla)
25
26 apps=
27 for exp in $srcdir/systemtap.apps/*.exp
28 do
29 app=`basename $exp .exp`
30 apps="$app $apps"
31 done
32 AC_ARG_ENABLE([testapps],
33 AC_HELP_STRING([--enable-testapps=foo bar or all],
34 [enable rebuilding of large external apps for testing <sdt.h> markers]))
35 AC_MSG_NOTICE([Will test ${enable_testapps-no} apps from: $apps])
36 AC_SUBST(enable_testapps)
37
38 AC_CONFIG_FILES(Makefile)
39 AC_OUTPUT
This page took 0.038303 seconds and 5 git commands to generate.