X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=lib%2Fbuilt-with.c;fp=lib%2Fbuilt-with.c;h=0c70010beca5548c012b531edb70691703df5ca6;hp=320be6c5ed20d1e2114ae88ed1d37b92666a0b12;hb=00cdfe10717020423870fdaf56e973db9aba9f5a;hpb=e02bb7e9fdbc96c66f32ce531509824f8afd4686 diff --git a/lib/built-with.c b/lib/built-with.c index 320be6c5..0c70010b 100644 --- a/lib/built-with.c +++ b/lib/built-with.c @@ -25,9 +25,9 @@ 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) {