summaryrefslogtreecommitdiffstats
path: root/autogen.rc
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 16:14:06 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 16:14:06 +0000
commiteee068778cb28ecf3c14e1bf843a95547d72c42d (patch)
tree0e07b30ddc5ea579d682d5dbe57998200d1c9ab7 /autogen.rc
parentInitial commit. (diff)
downloadgnupg2-upstream/2.2.40.tar.xz
gnupg2-upstream/2.2.40.zip
Adding upstream version 2.2.40.upstream/2.2.40upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'autogen.rc')
-rw-r--r--autogen.rc46
1 files changed, 46 insertions, 0 deletions
diff --git a/autogen.rc b/autogen.rc
new file mode 100644
index 0000000..3ea03e0
--- /dev/null
+++ b/autogen.rc
@@ -0,0 +1,46 @@
+# autogen.sh configuration for GnuPG -*- sh -*-
+
+display_name=GnuPG
+
+#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-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
+
+
+extra_aclocal_flags=""
+
+final_info="./configure --sysconfdir=/etc --enable-maintainer-mode && make"