diff options
author | Marcus Brinkmann <[email protected]> | 2001-11-20 04:02:55 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2001-11-20 04:02:55 +0000 |
commit | a1acb1d69a583b0b595e7c766123f8e547f061a8 (patch) | |
tree | 9b703c5c231fb8b742cea5bf8eda6efb3ced3f97 | |
parent | 2001-11-20 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-a1acb1d69a583b0b595e7c766123f8e547f061a8.tar.gz gpgme-a1acb1d69a583b0b595e7c766123f8e547f061a8.zip |
2001-11-20 Marcus Brinkmann <[email protected]>
* configure.ac (NEED_GPGSM_VERSION): New variable. Treat it
similarly to NEED_GPGSM_VERSION.
* acconfig.h: Likewise.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | acconfig.h | 2 | ||||
-rw-r--r-- | configure.ac | 3 |
3 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2001-11-20 Marcus Brinkmann <[email protected]> + + * configure.ac (NEED_GPGSM_VERSION): New variable. Treat it + similarly to NEED_GPGSM_VERSION. + * acconfig.h: Likewise. + 2001-11-18 Marcus Brinkmann <[email protected]> * configure.in: Renamed to ... @@ -46,6 +46,8 @@ /* Path to the GpgSM binary. */ #undef GPGSM_PATH +/* Min. needed GpgSM version. */ +#undef NEED_GPGSM_VERSION /* Stuff needed by jnlib. */ #undef HAVE_BYTE_TYPEDEF diff --git a/configure.ac b/configure.ac index 9ef4d44a..55ab067f 100644 --- a/configure.ac +++ b/configure.ac @@ -40,12 +40,14 @@ LIBGPGME_LT_CURRENT=4 LIBGPGME_LT_AGE=4 LIBGPGME_LT_REVISION=0 NEED_GPG_VERSION=1.0.6 +NEED_GPGSM_VERSION=0.0.0 ############################################## AC_SUBST(LIBGPGME_LT_CURRENT) AC_SUBST(LIBGPGME_LT_AGE) AC_SUBST(LIBGPGME_LT_REVISION) AC_DEFINE_UNQUOTED(NEED_GPG_VERSION, "$NEED_GPG_VERSION") +AC_DEFINE_UNQUOTED(NEED_GPGSM_VERSION, "$NEED_GPGSM_VERSION") dnl Don't default to build static libs. dnl AC_DISABLE_STATIC @@ -199,5 +201,6 @@ echo " GnuPG version: min. $NEED_GPG_VERSION GnuPG path: $GPG + GpgSM version: min. $NEED_GPGSM_VERSION GpgSM path: $GPGSM " |