mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2024-11-22 14:27:09 +00:00
Merge pull request #27 from remicollet/issue-checkver
fix build with old libgpgme 1.3
This commit is contained in:
commit
75813dfb81
2 changed files with 7 additions and 10 deletions
|
@ -40,15 +40,16 @@ if test "$PHP_GNUPG" != "no"; then
|
|||
|
||||
PHP_ADD_INCLUDE($GNUPG_DIR/include)
|
||||
|
||||
dnl gpgme_op_passwd is not used but was added in 1.3.0
|
||||
LIBNAME=gpgme
|
||||
LIBSYMBOL=gpgme_check_version
|
||||
LIBSYMBOL=gpgme_op_passwd
|
||||
|
||||
PHP_CHECK_LIBRARY($LIBNAME,$LIBSYMBOL,
|
||||
[
|
||||
PHP_ADD_LIBRARY_WITH_PATH($LIBNAME, $GNUPG_DIR/$PHP_LIBDIR, GNUPG_SHARED_LIBADD)
|
||||
AC_DEFINE(HAVE_GNUPGLIB,1,[ ])
|
||||
],[
|
||||
AC_MSG_ERROR([wrong gpgme lib version or lib not found])
|
||||
AC_MSG_ERROR([wrong gpgme lib version or lib not found (version >= 1.3 required)])
|
||||
],[
|
||||
-L$GNUPG_DIR/$PHP_LIBDIR -lm $GNUPG_DL
|
||||
])
|
||||
|
|
12
gnupg.c
12
gnupg.c
|
@ -170,7 +170,9 @@ static void php_gnupg_this_make(PHPC_THIS_DECLARE(gnupg), zval *options TSRMLS_D
|
|||
ctx, GPGME_PROTOCOL_OpenPGP, file_name, home_dir);
|
||||
}
|
||||
gpgme_set_armor(ctx, 1);
|
||||
#if GPGME_VERSION_NUMBER >= 0x010400 /* GPGME >= 1.4.0 */
|
||||
gpgme_set_pinentry_mode(ctx, GPGME_PINENTRY_MODE_LOOPBACK);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
/* }}} */
|
||||
|
@ -591,10 +593,8 @@ PHP_MINIT_FUNCTION(gnupg)
|
|||
#if GPGME_VERSION_NUMBER >= 0x010500 /* GPGME >= 1.5.0 */
|
||||
PHP_GNUPG_SET_CLASS_CONST("PK_ECC", GPGME_PK_ECC);
|
||||
#endif /* gpgme >= 1.5.0 */
|
||||
#if GPGME_VERSION_NUMBER >= 0x010300 /* GPGME >= 1.3.0 */
|
||||
PHP_GNUPG_SET_CLASS_CONST("PK_ECDSA", GPGME_PK_ECDSA);
|
||||
PHP_GNUPG_SET_CLASS_CONST("PK_ECDH", GPGME_PK_ECDH);
|
||||
#endif /* gpgme >= 1.3.0 */
|
||||
#if GPGME_VERSION_NUMBER >= 0x010700 /* GPGME >= 1.7.0 */
|
||||
PHP_GNUPG_SET_CLASS_CONST("PK_EDDSA", GPGME_PK_EDDSA);
|
||||
#endif /* gpgme >= 1.7.0 */
|
||||
|
@ -633,10 +633,8 @@ PHP_MINIT_FUNCTION(gnupg)
|
|||
#if GPGME_VERSION_NUMBER >= 0x010500 /* GPGME >= 1.5.0 */
|
||||
PHP_GNUPG_REG_CONST("GNUPG_PK_ECC", GPGME_PK_ECC);
|
||||
#endif /* gpgme >= 1.5.0 */
|
||||
#if GPGME_VERSION_NUMBER >= 0x010300 /* GPGME >= 1.3.0 */
|
||||
PHP_GNUPG_REG_CONST("GNUPG_PK_ECDSA", GPGME_PK_ECDSA);
|
||||
PHP_GNUPG_REG_CONST("GNUPG_PK_ECDH", GPGME_PK_ECDH);
|
||||
#endif /* gpgme >= 1.3.0 */
|
||||
#if GPGME_VERSION_NUMBER >= 0x010700 /* GPGME >= 1.7.0 */
|
||||
PHP_GNUPG_REG_CONST("GNUPG_PK_EDDSA", GPGME_PK_EDDSA);
|
||||
#endif /* gpgme >= 1.7.0 */
|
||||
|
@ -1099,9 +1097,7 @@ PHP_FUNCTION(gnupg_keyinfo)
|
|||
PHP_GNUPG_ARRAY_ADD_ASSOC_BOOL(subkey, revoked, gpgme_subkey);
|
||||
PHP_GNUPG_ARRAY_ADD_ASSOC_BOOL(subkey, can_certify, gpgme_subkey);
|
||||
PHP_GNUPG_ARRAY_ADD_ASSOC_BOOL(subkey, can_authenticate, gpgme_subkey);
|
||||
#if GPGME_VERSION_NUMBER >= 0x010100 /* GPGME >= 1.1.0 */
|
||||
PHP_GNUPG_ARRAY_ADD_ASSOC_BOOL(subkey, is_qualified, gpgme_subkey);
|
||||
#endif /* gpgme >= 1.1.0 */
|
||||
#if GPGME_VERSION_NUMBER >= 0x010900 /* GPGME >= 1.9.0 */
|
||||
PHP_GNUPG_ARRAY_ADD_ASSOC_BOOL(subkey, is_de_vs, gpgme_subkey);
|
||||
#endif /* gpgme >= 1.9.0 */
|
||||
|
@ -1117,15 +1113,15 @@ PHP_FUNCTION(gnupg_keyinfo)
|
|||
PHP_GNUPG_ARRAY_ADD_ASSOC_CSTR(subkey, keygrip, gpgme_subkey);
|
||||
}
|
||||
#endif /* gpgme >= 1.7.0 */
|
||||
#if GPGME_VERSION_NUMBER >= 0x010200 /* GPGME >= 1.2.0 */
|
||||
PHP_GNUPG_ARRAY_ADD_ASSOC_BOOL(subkey, is_cardkey, gpgme_subkey);
|
||||
if (gpgme_subkey->card_number) {
|
||||
PHP_GNUPG_ARRAY_ADD_ASSOC_CSTR(subkey, card_number, gpgme_subkey);
|
||||
}
|
||||
#endif /* gpgme >= 1.2.0 */
|
||||
#if GPGME_VERSION_NUMBER >= 0x010403 /* GPGME >= 1.4.3 */
|
||||
if (gpgme_subkey->curve) {
|
||||
PHP_GNUPG_ARRAY_ADD_ASSOC_CSTR(subkey, curve, gpgme_subkey);
|
||||
}
|
||||
#endif
|
||||
|
||||
PHPC_ARRAY_ADD_NEXT_INDEX_ZVAL(
|
||||
PHPC_VAL_CAST_TO_PZVAL(subkeys),
|
||||
|
|
Loading…
Reference in a new issue