aboutsummaryrefslogtreecommitdiff
path: root/example/m4/configure.m4
diff options
context:
space:
mode:
Diffstat (limited to 'example/m4/configure.m4')
-rw-r--r--example/m4/configure.m46
1 files changed, 4 insertions, 2 deletions
diff --git a/example/m4/configure.m4 b/example/m4/configure.m4
index ab8b8b04d..d9a70767b 100644
--- a/example/m4/configure.m4
+++ b/example/m4/configure.m4
@@ -3,7 +3,8 @@
##########################################################################
AC_ARG_WITH([examples],
[AS_HELP_STRING([--without-examples],
- [don't build and install example applications])],
+ [don't build and install example applications]
+ [[default=with]])],
[],
[with_examples=yes])
AM_CONDITIONAL([WITH_EXAMPLES], [test x$with_examples != xno])
@@ -12,7 +13,8 @@ AM_CONDITIONAL([WITH_EXAMPLES], [test x$with_examples != xno])
# Test examples during 'make check'
##########################################################################
AC_ARG_ENABLE([test-example],
- [AS_HELP_STRING([--enable-test-example], [run basic test against examples])],
+ [AS_HELP_STRING([--enable-test-example],
+ [run basic test against examples [default=enabled]])],
[test_example=$enableval],
[test_example=yes])
AM_CONDITIONAL([test_example], [test x$test_example = xyes ])