]> git.notmuchmail.org Git - notmuch/blobdiff - lib/built-with.c
crypto: index encrypted parts when indexopts try_decrypt is set.
[notmuch] / lib / built-with.c
index 635ed3b39f52557f9110a78a9f101faa21868e41..27384bd044bc16999b6ddccf686433c983209c76 100644 (file)
@@ -28,7 +28,9 @@ 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 {
-       return FALSE;
+       return false;
     }
 }