X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=crypto.c;h=cc45b88521ec7a19efd38bd8f4a30efbb6056bb7;hp=3dabc97b4346f6304f2e0fbf925efabf87d03d8c;hb=66c9b11bb05e09a7fa2a8ff390190cc16c1499e6;hpb=2355f1522ae77a1012ca3ef08d97098a5951d142 diff --git a/crypto.c b/crypto.c index 3dabc97b..cc45b885 100644 --- a/crypto.c +++ b/crypto.c @@ -13,13 +13,13 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program. If not, see http://www.gnu.org/licenses/ . + * along with this program. If not, see https://www.gnu.org/licenses/ . * * Authors: Jameson Rollins */ #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