2014-01-09 19:14:09 +01:00
|
|
|
# autogen.sh configuration for GnuPG -*- sh -*-
|
|
|
|
|
2018-02-21 18:03:59 +01:00
|
|
|
display_name=GnuPG
|
|
|
|
patches_to=gnupg-devel@gnupg.org
|
2014-06-06 16:29:41 +02:00
|
|
|
#version_parts=3
|
|
|
|
|
2014-01-09 19:14:09 +01:00
|
|
|
case "$myhost:$myhostsub" in
|
|
|
|
w32:ce)
|
|
|
|
extraoptions="--enable-dirmngr-auto-start --disable-scdaemon "
|
2017-08-24 17:44:02 +02:00
|
|
|
extraoptions="$extraoptions --disable-zip"
|
2014-01-09 19:14:09 +01:00
|
|
|
;;
|
|
|
|
w32:)
|
2017-08-24 17:44:02 +02:00
|
|
|
extraoptions="--enable-gpgtar"
|
2014-01-09 19:14:09 +01:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
case "$myhost" in
|
|
|
|
w32)
|
|
|
|
configure_opts="
|
|
|
|
--with-zlib=@SYSROOT@
|
|
|
|
--with-regex=@SYSROOT@
|
|
|
|
--disable-g13
|
|
|
|
"
|
|
|
|
;;
|
|
|
|
|
|
|
|
amd64)
|
|
|
|
configure_opts="
|
|
|
|
--with-zlib=/usr/x86_64-linux-gnu/usr
|
|
|
|
"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
2014-11-11 10:13:10 +01:00
|
|
|
extra_aclocal_flags=""
|
2014-01-09 19:14:09 +01:00
|
|
|
|
2014-09-18 16:00:34 +02:00
|
|
|
final_info="./configure --sysconfdir=/etc --enable-maintainer-mode && make"
|