X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=crypto.c;h=cc45b88521ec7a19efd38bd8f4a30efbb6056bb7;hp=3e8ce7ca07740b3aea9491dee18c7859b8ac4df5;hb=9836a8f42bf83d57950f670e69d72854ee5e063b;hpb=6a833a6e83865f6999707cc30768d07e1351c2cb diff --git a/crypto.c b/crypto.c index 3e8ce7ca..cc45b885 100644 --- a/crypto.c +++ b/crypto.c @@ -19,7 +19,7 @@ */ #include "notmuch-client.h" - +#if (GMIME_MAJOR_VERSION < 3) /* Create a GPG context (GMime 2.6) */ static notmuch_crypto_context_t * create_gpg_context (notmuch_crypto_t *crypto) @@ -132,3 +132,9 @@ notmuch_crypto_cleanup (notmuch_crypto_t *crypto) return 0; } +#else +int notmuch_crypto_cleanup (unused(notmuch_crypto_t *crypto)) +{ + return 0; +} +#endif