X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=lib%2Fbuilt-with.c;h=320be6c5ed20d1e2114ae88ed1d37b92666a0b12;hp=2f1f0b5c1bf33237ec6aca7a44d83f84f515e223;hb=6682b4e686b7972883626c9b0f941ae4bf02dedb;hpb=92d8eae8f182e4eebc87d76f8d4f37e6c018883a diff --git a/lib/built-with.c b/lib/built-with.c index 2f1f0b5c..320be6c5 100644 --- a/lib/built-with.c +++ b/lib/built-with.c @@ -30,7 +30,9 @@ notmuch_built_with (const char *name) return HAVE_XAPIAN_FIELD_PROCESSOR; } else if (STRNCMP_LITERAL (name, "retry_lock") == 0) { return HAVE_XAPIAN_DB_RETRY_LOCK; + } else if (STRNCMP_LITERAL (name, "session_key") == 0) { + return true; } else { - return FALSE; + return false; } }