diff options
author | Werner Koch <[email protected]> | 2017-12-12 11:12:47 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2017-12-12 11:12:47 +0000 |
commit | d4d04d6c0432b032f6ea23c8517fd6a5f623bb67 (patch) | |
tree | 8af7eeabe5d76e7963d1f1ac03a8f56fb0731456 | |
parent | qt: Don't use QDateTime::toSecsSinceEpoch (diff) | |
download | gpgme-d4d04d6c0432b032f6ea23c8517fd6a5f623bb67.tar.gz gpgme-d4d04d6c0432b032f6ea23c8517fd6a5f623bb67.zip |
Require libgpg-error 1.24 and libassuan 2.4.2
* src/util.h (GPG_ERR_FALSE): Remove due to newer libgpg-error.
--
We require these over one year old versions to better allign with
GnuPG's demand. Note that the required libassuan is acgtually 2 years
old.
Signed-off-by: Werner Koch <[email protected]>
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | src/util.h | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index be06d94b..bca7bbf2 100644 --- a/configure.ac +++ b/configure.ac @@ -74,9 +74,9 @@ LIBQGPGME_LT_REVISION=0 GPGME_CONFIG_API_VERSION=1 ############################################## -NEED_GPG_ERROR_VERSION=1.17 +NEED_GPG_ERROR_VERSION=1.24 NEED_LIBASSUAN_API=2 -NEED_LIBASSUAN_VERSION=2.0.2 +NEED_LIBASSUAN_VERSION=2.4.2 PACKAGE=$PACKAGE_NAME @@ -45,10 +45,6 @@ #define DIM(v) (sizeof(v)/sizeof((v)[0])) -#if GPG_ERROR_VERSION_NUMBER < 0x011500 /* 1.21 */ -# define GPG_ERR_FALSE 256 -#endif - #if GPG_ERROR_VERSION_NUMBER < 0x011900 /* 1.25 */ # define GPG_ERR_ENGINE_TOO_OLD 300 # define GPG_ERR_TOO_OLD 308 |