]> sourceware.org Git - systemtap.git/blob - testsuite/configure.ac
c40fdf72d60414aa13cd7b8dc9b93bf84e162fef
[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], 0.9, systemtap@sources.redhat.com, 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 AC_CONFIG_FILES(Makefile)
27 AC_OUTPUT
This page took 0.034453 seconds and 4 git commands to generate.