mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Require GpgRT version 1.41.
* configure.ac (NEED_GPG_ERROR_VERSION): Rename to NEED_GPGRT_VERSION and set to 1.41. * common/sysutils.c (gnupg_access): Remove code for older gpgrt versions. * kbx/backend-sqlite.c: Ditto. * sm/gpgsm.c (main): Ditto. -- We already have a requirement for a newer Libgcrypt and thus we can also require a more recent libgpgrt (aka libgpg-error) which was released before Libgcrypt.
This commit is contained in:
parent
f9e4dae08d
commit
2b75b25605
4 changed files with 6 additions and 46 deletions
|
@ -34,22 +34,6 @@
|
|||
#include "keybox-defs.h" /* (for the openpgp parser) */
|
||||
|
||||
|
||||
/* Add replacement error codes; GPGRT provides SQL error codes from
|
||||
* version 1.37 on. */
|
||||
#if GPGRT_VERSION_NUMBER < 0x012500 /* 1.37 */
|
||||
|
||||
static GPGRT_INLINE gpg_error_t
|
||||
gpg_err_code_from_sqlite (int sqlres)
|
||||
{
|
||||
return sqlres? 1500 + (sqlres & 0xff) : 0;
|
||||
}
|
||||
|
||||
#define GPG_ERR_SQL_OK 1500
|
||||
#define GPG_ERR_SQL_ROW 1600
|
||||
#define GPG_ERR_SQL_DONE 1601
|
||||
|
||||
#endif /*GPGRT_VERSION_NUMBER*/
|
||||
|
||||
|
||||
/* Our definition of the backend handle. */
|
||||
struct backend_handle_s
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue