2014-01-09 19:14:09 +01:00
|
|
|
# autogen.sh configuration for GnuPG -*- sh -*-
|
|
|
|
|
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-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
|
|
|
|
|
|
|
|
|
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"
|