diff options
| author | David Bremner <david@tethera.net> | 2016-06-26 17:29:45 +0200 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2016-06-29 09:05:49 +0200 |
| commit | 3a45d29ed4d753bcf72f2fa0bb37fefd4d18f96a (patch) | |
| tree | c4dffae574ab108a7ab2d755280239bd400d1b51 /notmuch-config.c | |
| parent | 6450813e8f211c87e9a2b48c76fb0c99c57410d2 (diff) | |
lib: add built_with handling for XAPIAN_DB_RETRY_LOCK
This support will be present only if the appropriate version of xapian
is available _and_ the user did not disable the feature when
building. So there really needs to be some way for the user to check.
Diffstat (limited to 'notmuch-config.c')
| -rw-r--r-- | notmuch-config.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/notmuch-config.c b/notmuch-config.c index de9a8a41..e5d42a0c 100644 --- a/notmuch-config.c +++ b/notmuch-config.c @@ -911,6 +911,9 @@ _notmuch_config_list_built_with () printf("%sfield_processor=%s\n", BUILT_WITH_PREFIX, notmuch_built_with ("field_processor") ? "true" : "false"); + printf("%sretry_lock=%s\n", + BUILT_WITH_PREFIX, + notmuch_built_with ("retry_lock") ? "true" : "false"); } static int |
