mirror of
git://git.gnupg.org/gnupg.git
synced 2024-10-31 20:08:43 +01:00
802b23289c
* autogen.rc (configure_opts): Remove --with-*-prefix. -- It seems that we haven't done cross-build for amd64 for a while, we now use nPth instead of Pth. Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
37 lines
696 B
Bash
37 lines
696 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@
|
|
--with-regex=@SYSROOT@
|
|
--disable-g13
|
|
"
|
|
;;
|
|
|
|
amd64)
|
|
configure_opts="
|
|
--with-zlib=/usr/x86_64-linux-gnu/usr
|
|
"
|
|
;;
|
|
esac
|
|
|
|
|
|
extra_aclocal_flags=""
|
|
|
|
final_info="./configure --sysconfdir=/etc --enable-maintainer-mode && make"
|