1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-05-27 21:41:23 +02:00
gnupg/autogen.rc
NIIBE Yutaka 802b23289c build: Remove --with-*-prefix from configure_opts.
* 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>
2018-12-04 12:32:01 +09:00

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"