1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-05-27 21:41:23 +02:00
gnupg/autogen.rc
Werner Koch 10f52f9bf3
speedo: Put the keyboxd into the Windows installer
* build-aux/speedo/w32/inst.nsi: Install keyboxd.
* Makefile.am (sign-release): Sign the wixlib only if generated.
* autogen.rc: Remove meanwhile obsolete option --with-regex.
2021-10-12 17:12:39 +02:00

37 lines
689 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@
--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"