aboutsummaryrefslogtreecommitdiff
path: root/helper/m4/configure.m4
blob: 343f5e3cf643fa805301730231b8d2ce79dcb15e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
##########################################################################
# Enable/disable test-helper
##########################################################################
test_helper=no
AC_ARG_ENABLE([test-helper],
    [  --enable-test-helper      run test in helper/test],
    [if test "x$enableval" = "xyes"; then
        test_helper=yes
    fi])

##########################################################################
# Enable/disable helper-ext
# platform specific non portable extensions
##########################################################################
helper_linux=no
AC_ARG_ENABLE([helper-linux],
	[  --enable-helper-linux	build helper platform extensions (not portable)],
	[if test "x$enableval" = "xyes"; then
		helper_linux=yes
	fi])

AC_CONFIG_FILES([helper/Makefile
		helper/test/Makefile])