mirror of
git://git.gnupg.org/gnupg.git
synced 2024-10-31 20:08:43 +01:00
2e734a3ce1
* autogen.rc: Remove '--with-adns' argument. * configure.ac: Remove check for ADNS. * dirmngr/dns-stuff.c: Remove all code that uses ADNS. * dirmngr/server.c (cmd_getinfo): Update status line. * doc/dirmngr.texi: Do not mention ADNS. -- We used ADNS to support queries over Tor. However, our patch to ADNS that adds Tor support was never accepted upstream. Furthermore, there are other shortcomings that let us to consider alternatives. Signed-off-by: Justus Winter <justus@g10code.com>
45 lines
1.1 KiB
Bash
45 lines
1.1 KiB
Bash
# autogen.sh configuration for GnuPG -*- sh -*-
|
|
|
|
#version_parts=3
|
|
|
|
case "$myhost:$myhostsub" in
|
|
w32:ce)
|
|
extraoptions="--enable-dirmngr-auto-start --disable-scdaemon "
|
|
extraoptions="$extraoptions --disable-zip --enable-gpg2-is-gpg"
|
|
;;
|
|
w32:)
|
|
extraoptions="--enable-gpgtar --enable-gpg2-is-gpg"
|
|
;;
|
|
esac
|
|
|
|
case "$myhost" in
|
|
w32)
|
|
configure_opts="
|
|
--with-gpg-error-prefix=@SYSROOT@
|
|
--with-ksba-prefix=@SYSROOT@
|
|
--with-libgcrypt-prefix=@SYSROOT@
|
|
--with-libassuan-prefix=@SYSROOT@
|
|
--with-zlib=@SYSROOT@
|
|
--with-regex=@SYSROOT@
|
|
--with-npth-prefix=@SYSROOT@
|
|
--disable-g13
|
|
"
|
|
;;
|
|
|
|
amd64)
|
|
configure_opts="
|
|
--with-gpg-error-prefix=@SYSROOT@
|
|
--with-ksba-prefix=@SYSROOT@
|
|
--with-libgcrypt-prefix=@SYSROOT@
|
|
--with-libassuan-prefix=@SYSROOT@
|
|
--with-zlib=/usr/x86_64-linux-gnu/usr
|
|
--with-pth-prefix=/usr/x86_64-linux-gnu/usr
|
|
"
|
|
;;
|
|
esac
|
|
|
|
|
|
extra_aclocal_flags=""
|
|
|
|
final_info="./configure --sysconfdir=/etc --enable-maintainer-mode && make"
|