From 42b08f7dbd376bd7376ff4402060055d29e9fcac Mon Sep 17 00:00:00 2001 From: Gunter Grodotzki Date: Mon, 28 May 2018 08:55:21 +0200 Subject: [PATCH] fix version req --- gnupg.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnupg.c b/gnupg.c index 0b871ac..bcd9d8c 100644 --- a/gnupg.c +++ b/gnupg.c @@ -987,12 +987,13 @@ PHP_FUNCTION(gnupg_keyinfo) #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 >= 0x010800 /* GPGME >= 1.8.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.8.0 */ +#endif /* gpgme >= 1.9.0 */ /* https://github.com/gpg/gpgme/blob/f7700a016926f0d8e9cb3c0337837deb7fe01079/src/gpgme.h.in#L258 https://github.com/gpg/gpgme/blob/f7700a016926f0d8e9cb3c0337837deb7fe01079/src/gpgme.c#L1196 + printf '0x%02x%02x%02x\n' 1 2 0 */ PHP_GNUPG_ARRAY_ADD_ASSOC_LONG(subkey, pubkey_algo, gpgme_subkey); PHP_GNUPG_ARRAY_ADD_ASSOC_LONG(subkey, length, gpgme_subkey);