]> sourceware.org Git - systemtap.git/blame - testsuite/configure.ac
bump version numbers
[systemtap.git] / testsuite / configure.ac
CommitLineData
5ba96b90
FCE
1dnl configure.ac --- autoconf input file for systemtap testsuite
2dnl Process this file with autoconf to produce a configure script.
3
ff0c5ecc 4AC_INIT([systemtap], 4.333, systemtap@sourceware.org, systemtap)
5ba96b90
FCE
5
6AC_PREREQ(2.59)
7AC_CONFIG_AUX_DIR(..)
8AM_INIT_AUTOMAKE([dejagnu foreign])
9AM_MAINTAINER_MODE
10
50d0c992 11AC_ARG_ENABLE([dejazilla],
44da61d7 12 AS_HELP_STRING([--enable-dejazilla@<:@=ARG@:>@],
50d0c992
FCE
13 [enable dejazilla support to automatically email test results to a
14 central public collection point (default is disabled). Optional
44da61d7
JU
15 ARG overrides the default email address. Specifying a url for ARG
16 will instead send the results to that url via http.]))
50d0c992
FCE
17case "$enable_dejazilla" in
18 no) dejazilla= ;;
19 yes) dejazilla=dejazilla@elastic.org ;;
20 *) dejazilla="$enable_dejazilla" ;;
21esac
22if test -n "$dejazilla"; then
44da61d7 23 AC_MSG_NOTICE([A "make *check" will send results to $dejazilla])
50d0c992
FCE
24fi
25AC_SUBST(dejazilla)
26
e01cd0ba
DS
27# The configure above passed us several python-related variables. Make
28# sure these get substituted in the Makefile.
29AC_SUBST([python], [${python}])
30AC_SUBST([pyexecdir], [${pyexecdir}])
31AC_SUBST([python3], [${python3}])
32AC_SUBST([py3execdir], [${py3execdir}])
33
2c279bc4
FCE
34apps=
35for exp in $srcdir/systemtap.apps/*.exp
36do
37 app=`basename $exp .exp`
38 apps="$app $apps"
39done
40AC_ARG_ENABLE([testapps],
899b6620 41 AC_HELP_STRING([--enable-testapps=foo bar or all],
2c279bc4
FCE
42 [enable rebuilding of large external apps for testing <sdt.h> markers]))
43AC_MSG_NOTICE([Will test ${enable_testapps-no} apps from: $apps])
44AC_SUBST(enable_testapps)
45
5ba96b90
FCE
46AC_CONFIG_FILES(Makefile)
47AC_OUTPUT
This page took 0.217601 seconds and 5 git commands to generate.