X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=lib%2Fbuilt-with.c;h=9cffd9f91d5a6cecdc736c8f3564cf5d6361b657;hp=7ea1d7fdc788968f6e509e11f7a51a6fa5d14541;hb=71eaa19350883b30bafe885ea083c2e3f1621e10;hpb=792bea5aff135107fd970f51f3ef8c65f68194de diff --git a/lib/built-with.c b/lib/built-with.c index 7ea1d7fd..9cffd9f9 100644 --- a/lib/built-with.c +++ b/lib/built-with.c @@ -13,7 +13,7 @@ * 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/ . * * Author: David Bremner */ @@ -28,7 +28,11 @@ notmuch_built_with (const char *name) return HAVE_XAPIAN_COMPACT; } else if (STRNCMP_LITERAL (name, "field_processor") == 0) { 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 HAVE_GMIME_SESSION_KEYS; } else { - return FALSE; + return false; } }