diff options
author | Marcus Brinkmann <[email protected]> | 2001-12-14 15:35:29 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2001-12-14 15:35:29 +0000 |
commit | a54c0a05b5ba239e06444e55b2a4c2bd87c761ce (patch) | |
tree | 2c69162db342ab59c8229493f6de38bbe12d2313 /configure.ac | |
parent | 2001-12-14 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-a54c0a05b5ba239e06444e55b2a4c2bd87c761ce.tar.gz gpgme-a54c0a05b5ba239e06444e55b2a4c2bd87c761ce.zip |
2001-12-14 Marcus Brinkmann <[email protected]>
* configure.ac (GPG): Substitute this variable.
(GPGSM): Likewise.
tests/
CVS2001-12-14 Marcus Brinkmann <[email protected]>
* gpg/Makefile.am (GPG): Set to @GPG_PATH@.
(./pubring.gpg): Use $(GPG) instead gpg.
(./secring.gpg): Likewise.
* gpgsm/t-import.c (main): Remove third test case.
* gpgsm/Makefile.am (GPGSM): Set to @GPGSM@.
(all-local): New target.
(./pubcerts.kbx): Likewise.
* gpgsm/t-encrypt.c: New file.
* gpgsm/Makefile.am (TESTS): Add t-encrypt.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 928008a6..b597653c 100644 --- a/configure.ac +++ b/configure.ac @@ -141,9 +141,11 @@ if test "$GPG" = no; then fi else AC_DEFINE_UNQUOTED(GPG_PATH, "$GPG") + AC_SUBST(GPG) fi AM_CONDITIONAL(RUN_GPG_TESTS, [test "$cross_compiling" != "yes" && test -n "$GPG" && test -r "$GPG"]) +AC_SUBST(GPG_PATH) NO_OVERRIDE=no AC_ARG_WITH(gpgsm, @@ -169,6 +171,7 @@ if test "$GPGSM" = no; then fi else AC_DEFINE_UNQUOTED(GPGSM_PATH, "$GPGSM") + AC_SUBST(GPGSM) fi AM_CONDITIONAL(RUN_GPGSM_TESTS, [test "$cross_compiling" != "yes" && test -n "$GPGSM" && test -r "$GPGSM"]) |