diff options
Diffstat (limited to '')
-rw-r--r-- | autogen.rc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/autogen.rc b/autogen.rc new file mode 100644 index 00000000..d0ade530 --- /dev/null +++ b/autogen.rc @@ -0,0 +1,20 @@ +# autogen.sh configuration for GPGME -*- sh -*- + +case "$myhost" in + w32) + configure_opts=" + --with-gpg-error-prefix=@SYSROOT@ + --with-libassuan-prefix=@SYSROOT@ + " + ;; + + amd64) + configure_opts=" + --with-gpg-error-prefix=@SYSROOT@ + --with-libassuan-prefix=@SYSROOT@ + " + ;; +esac + + +final_info="./configure --enable-maintainer-mode && make" |