diff options
author | Werner Koch <[email protected]> | 2014-01-09 18:14:09 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2014-01-10 16:40:05 +0000 |
commit | 1a504aab384947c1a6e949affd14bc696297fc8d (patch) | |
tree | c6c4e2e09912bec1bcdc8b06c3aefec4e7c95b34 /autogen.rc | |
parent | Set next version to 1.5.0 (diff) | |
download | gpgme-1a504aab384947c1a6e949affd14bc696297fc8d.tar.gz gpgme-1a504aab384947c1a6e949affd14bc696297fc8d.zip |
Use the generic autogen.sh script.
* autogen.rc: New.
* Makefile.am (EXTRA_DIST): Add it.
* autogen.sh: Update from GnuPG.
* configure.ac (AM_SILENT_RULES): New.
Diffstat (limited to 'autogen.rc')
-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" |