mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-10 21:38:50 +01:00
2540a4b674
* configure.ac: Remove option --build-agent-only. (FAKE_CURL, GPGKEYS_CURL): Remove check for cURL (GPGKEYS_MAILTO): Remove ac_subst but keep the currently unused SENDMAIL check. (GPGKEYS_KDNS): Remove ac_subst. * autogen.rc (final_info): Remove suggestion to use the removed option --enable-mailto.
46 lines
1.1 KiB
Bash
46 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"
|
|
;;
|
|
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@
|
|
--with-adns=@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="-I gl/m4"
|
|
|
|
final_info="./configure --sysconfdir=/etc --enable-maintainer-mode --enable-symcryptrun --enable-gpgtar && make"
|