diff options
author | Werner Koch <[email protected]> | 2021-03-15 08:00:00 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2021-03-15 08:50:30 +0000 |
commit | 8d6123faa8cae0bad6f82c9021e9ac6686b2f55d (patch) | |
tree | 17e934e738feac0ffefc25b964b5777eafc4acde /Makefile.am | |
parent | scd: Add handling of Ed448 key. (diff) | |
download | gnupg-8d6123faa8cae0bad6f82c9021e9ac6686b2f55d.tar.gz gnupg-8d6123faa8cae0bad6f82c9021e9ac6686b2f55d.zip |
build: new option to disable building of tpm2daemon
* configure.ac (build_tpmd): New configure option --disable-tpm2d
(BUILD_WITH_TPM2D): New.
* Makefile.am (tests): Use conditionally BUILD_TPM2D instead of
HAVE_LIBTSS.
* build-aux/speedo.mk (speedo_pkg_gnupg_configure) [W32]: Do not build
tpm2d.
* autogen.rc: Ditto.
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 0e1aacad3..b23cf3be8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -106,7 +106,7 @@ tests = else tests = tests endif -if HAVE_LIBTSS +if BUILD_TPM2D tpm2d = tpm2d else tpm2d = |