X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=configure.ac;h=68f41315c9bee4ed00aa60c4f37a89a73f9c0779;hb=9b3a9a1f8ee47787e50a130b444dae38eee5dca0;hp=10087f3fbd0386ab1b4ceabbb9fac5560e201209;hpb=c95c332aeedc4c5af4aa4988f3379b500a852fab;p=lttng-ust.git diff --git a/configure.ac b/configure.ac index 10087f3f..68f41315 100644 --- a/configure.ac +++ b/configure.ac @@ -423,6 +423,19 @@ AC_DEFINE_UNQUOTED([LTTNG_SYSTEM_RUNDIR], ["$lttng_system_rundir"], AC_CHECK_PROG([BUILD_GEN_TP_EXAMPLES], [python], ["yes"]) AM_CONDITIONAL([BUILD_GEN_TP_EXAMPLES], [test "x$BUILD_GEN_TP_EXAMPLES" = "xyes"]) +# Enable building examples +AC_ARG_ENABLE( + examples, + AS_HELP_STRING( + [--disable-examples], + [Do not build and install examples] + ), + [enable_examples=$enableval], + [enable_examples=yes] +) + +AM_CONDITIONAL([ENABLE_EXAMPLES], [test "x$enable_examples" != "xno"]) + # Set $IN_GIT_REPO if we're in the Git repository; the `bootstrap` file # is not distributed in tarballs. AS_IF([test -f "$srcdir/bootstrap"], [in_git_repo=yes], [in_git_repo=no]) @@ -596,6 +609,9 @@ PPRINT_PROP_BOOL([NUMA], $value) AS_ECHO PPRINT_SET_INDENT(0) +test "x$enable_examples" = xyes && value=1 || value=0 +PPRINT_PROP_BOOL([Build and install examples], $value, $PPRINT_COLOR_SUBTITLE) + # man pages build enabled/disabled m4_pushdef([build_man_pages_msg], [Build and install man pages])