summaryrefslogtreecommitdiffstats
path: root/kbx
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2020-02-13 16:18:12 +0100
committerWerner Koch <wk@gnupg.org>2020-02-13 16:18:12 +0100
commit6cac2bd0382eb7ed0d249f077522516e64fc1d8f (patch)
treeffa9a98d6596718fdf788ab712c23f617d43ffd5 /kbx
parentscd: Print the main app name also for not fully supported cards. (diff)
downloadgnupg2-6cac2bd0382eb7ed0d249f077522516e64fc1d8f.tar.xz
gnupg2-6cac2bd0382eb7ed0d249f077522516e64fc1d8f.zip
build: New configure option --disable-keyboxd
* configure.ac: Add option --dsiable-keyboxd * kbx/Makefile.am: Do not build keyboxd in that case. -- This is useful to build a minimal version of gpgv. Signed-off-by: Werner Koch <wk@gnupg.org>
Diffstat (limited to 'kbx')
-rw-r--r--kbx/Makefile.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/kbx/Makefile.am b/kbx/Makefile.am
index 436733fc5..242e373a6 100644
--- a/kbx/Makefile.am
+++ b/kbx/Makefile.am
@@ -29,9 +29,13 @@ endif
AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(KSBA_CFLAGS)
-noinst_LIBRARIES = libkeybox.a libkeybox509.a
bin_PROGRAMS = kbxutil
+noinst_LIBRARIES = libkeybox.a libkeybox509.a
+if BUILD_KEYBOXD
libexec_PROGRAMS = keyboxd
+else
+libexec_PROGRAMS =
+endif
if HAVE_W32CE_SYSTEM
extra_libs = $(LIBASSUAN_LIBS)