diff options
author | Werner Koch <[email protected]> | 2018-10-26 12:54:52 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2018-10-26 12:56:59 +0000 |
commit | b83fed64f8051279a8f36e024c1f12f7f13c4716 (patch) | |
tree | 2044c7e2f2377bd7bbe41133e59b0873169fb9e8 | |
parent | wkd: Add option --directory to the server. (diff) | |
download | gnupg-b83fed64f8051279a8f36e024c1f12f7f13c4716.tar.gz gnupg-b83fed64f8051279a8f36e024c1f12f7f13c4716.zip |
build: By default build wks-tools on all Unix platforms.
Signed-off-by: Werner Koch <[email protected]>
-rw-r--r-- | configure.ac | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f0e696618..795daa400 100644 --- a/configure.ac +++ b/configure.ac @@ -129,7 +129,10 @@ GNUPG_BUILD_PROGRAM(symcryptrun, no) # We use gpgtar to unpack test data, hence we always build it. If the # user opts out, we simply don't install it. GNUPG_BUILD_PROGRAM(gpgtar, yes) -GNUPG_BUILD_PROGRAM(wks-tools, no) +# We also install the gpg-wks-server tool by default but disable it +# later for platforms where it can't be build. +GNUPG_BUILD_PROGRAM(wks-tools, yes) + AC_SUBST(PACKAGE) AC_SUBST(PACKAGE_GT) @@ -681,6 +684,7 @@ case "${host}" in try_gettext="no" use_simple_gettext=yes mmap_needed=no + build_wks_tools=no ;; i?86-emx-os2 | i?86-*-os2*emx ) # OS/2 with the EMX environment @@ -688,6 +692,7 @@ case "${host}" in AC_DEFINE(HAVE_DRIVE_LETTERS) have_dosish_system=yes try_gettext="no" + build_wks_tools=no ;; i?86-*-msdosdjgpp*) @@ -696,6 +701,7 @@ case "${host}" in AC_DEFINE(HAVE_DRIVE_LETTERS) have_dosish_system=yes try_gettext="no" + build_wks_tools=no ;; *-*-hpux*) @@ -726,6 +732,7 @@ case "${host}" in # Android is fully utf-8 and we do not want to use iconv to # keeps things simple require_iconv=no + build_wks_tools=no ;; *-apple-darwin*) AC_DEFINE(_DARWIN_C_SOURCE, 900000L, |