]> git.notmuchmail.org Git - notmuch/blobdiff - lib/built-with.c
lib: migrate from Xapian ValueRangeProcessor to RangeProcessor
[notmuch] / lib / built-with.c
index 2f1f0b5c1bf33237ec6aca7a44d83f84f515e223..0c70010beca5548c012b531edb70691703df5ca6 100644 (file)
@@ -25,12 +25,14 @@ notmuch_bool_t
 notmuch_built_with (const char *name)
 {
     if (STRNCMP_LITERAL (name, "compact") == 0) {
-       return HAVE_XAPIAN_COMPACT;
+       return true;
     } else if (STRNCMP_LITERAL (name, "field_processor") == 0) {
-       return HAVE_XAPIAN_FIELD_PROCESSOR;
+       return true;
     } 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;
     }
 }