aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorSchanzenbach, Martin <mschanzenbach@posteo.de>2017-10-05 17:11:17 +0200
committerSchanzenbach, Martin <mschanzenbach@posteo.de>2017-10-05 17:11:17 +0200
commit2b0c260c3ceab5b2d5a4c3a04f7e2a0a357e9d75 (patch)
tree1d2c15ff0d1a587c16ce79de5a87b5baf3ba472b /configure.ac
parentca10195d9af33c557b57f16b8bb93df1066ab0ee (diff)
parent664aca2d29b15dd75967d2bb0298caf750993b6f (diff)
downloadgnunet-2b0c260c3ceab5b2d5a4c3a04f7e2a0a357e9d75.tar.gz
gnunet-2b0c260c3ceab5b2d5a4c3a04f7e2a0a357e9d75.zip
Merge remote-tracking branch 'origin/master' into identity_abe
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac17
1 files changed, 17 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 027724774..206a407fa 100644
--- a/configure.ac
+++ b/configure.ac
@@ -586,6 +586,23 @@ AC_CHECK_LIB([kvm],[kvm_open])
586AC_CHECK_LIB([kstat],[kstat_open]) 586AC_CHECK_LIB([kstat],[kstat_open])
587 587
588 588
589# should the build process be restricted to only building
590# the documentation?
591AC_MSG_CHECKING(whether to build documentation ONLY)
592AC_ARG_ENABLE([documentation],
593 [AS_HELP_STRING([--enable-documentation], [only build the documentation])],
594 [doc_only=${enableval}],
595 [doc_only=no])
596AC_MSG_RESULT($doc_only)
597if test "x$doc_only" = "xyes"
598then
599 AM_CONDITIONAL([DOC_ONLY],true)
600 AC_DEFINE([DOC_ONLY],[1],[Building the documentation])
601else
602 AM_CONDITIONAL([DOC_ONLY],false)
603 AC_DEFINE([DOC_ONLY],[0],[Canonical compilation])
604fi
605
589# should the build process be restricted to the code required 606# should the build process be restricted to the code required
590# for GNU Taler wallets? 607# for GNU Taler wallets?
591AC_MSG_CHECKING(whether to compile GNU Taler Wallet library ONLY) 608AC_MSG_CHECKING(whether to compile GNU Taler Wallet library ONLY)