mirror of
git://git.gnupg.org/gnupg.git
synced 2024-10-31 20:08:43 +01:00
8d6123faa8
* 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.
38 lines
718 B
Bash
38 lines
718 B
Bash
# autogen.sh configuration for GnuPG -*- sh -*-
|
|
|
|
display_name=GnuPG
|
|
patches_to=gnupg-devel@gnupg.org
|
|
#version_parts=3
|
|
|
|
case "$myhost:$myhostsub" in
|
|
w32:ce)
|
|
extraoptions="--enable-dirmngr-auto-start --disable-scdaemon "
|
|
extraoptions="$extraoptions --disable-zip"
|
|
;;
|
|
w32:)
|
|
extraoptions="--enable-gpgtar"
|
|
;;
|
|
esac
|
|
|
|
case "$myhost" in
|
|
w32)
|
|
configure_opts="
|
|
--with-zlib=@SYSROOT@
|
|
--with-regex=@SYSROOT@
|
|
--disable-g13
|
|
--disable-tpm2d
|
|
"
|
|
;;
|
|
|
|
amd64)
|
|
configure_opts="
|
|
--with-zlib=/usr/x86_64-linux-gnu/usr
|
|
"
|
|
;;
|
|
esac
|
|
|
|
|
|
extra_aclocal_flags=""
|
|
|
|
final_info="./configure --sysconfdir=/etc --enable-maintainer-mode && make"
|