diff options
author | Schanzenbach, Martin <mschanzenbach@posteo.de> | 2017-10-05 17:11:17 +0200 |
---|---|---|
committer | Schanzenbach, Martin <mschanzenbach@posteo.de> | 2017-10-05 17:11:17 +0200 |
commit | 2b0c260c3ceab5b2d5a4c3a04f7e2a0a357e9d75 (patch) | |
tree | 1d2c15ff0d1a587c16ce79de5a87b5baf3ba472b /configure.ac | |
parent | ca10195d9af33c557b57f16b8bb93df1066ab0ee (diff) | |
parent | 664aca2d29b15dd75967d2bb0298caf750993b6f (diff) |
Merge remote-tracking branch 'origin/master' into identity_abe
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 027724774d..206a407fa1 100644 --- a/configure.ac +++ b/configure.ac @@ -586,6 +586,23 @@ AC_CHECK_LIB([kvm],[kvm_open]) AC_CHECK_LIB([kstat],[kstat_open]) +# should the build process be restricted to only building +# the documentation? +AC_MSG_CHECKING(whether to build documentation ONLY) +AC_ARG_ENABLE([documentation], + [AS_HELP_STRING([--enable-documentation], [only build the documentation])], + [doc_only=${enableval}], + [doc_only=no]) +AC_MSG_RESULT($doc_only) +if test "x$doc_only" = "xyes" +then + AM_CONDITIONAL([DOC_ONLY],true) + AC_DEFINE([DOC_ONLY],[1],[Building the documentation]) +else + AM_CONDITIONAL([DOC_ONLY],false) + AC_DEFINE([DOC_ONLY],[0],[Canonical compilation]) +fi + # should the build process be restricted to the code required # for GNU Taler wallets? AC_MSG_CHECKING(whether to compile GNU Taler Wallet library ONLY) |