diff options
| author | David Bremner <david@tethera.net> | 2021-08-24 08:17:11 -0700 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2021-09-04 17:07:19 -0700 |
| commit | a83ad52da40b51b8419cae3c9ce1517ac33e547c (patch) | |
| tree | 2bb8e2db7abeae9ae904e8b34d3e3aa1f5b71769 /notmuch-config.c | |
| parent | d447b694b498c3e18a22f1eb15139a798c6aab26 (diff) | |
configure: optional library sfsexp
The configure part is essentially the same as the other checks using
pkg-config. Since the optional inclusion of this feature changes what
options are available to the user, include it in the "built_with"
pseudo-configuration keys.
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 80a207f6..c0c91cc8 100644 --- a/notmuch-config.c +++ b/notmuch-config.c @@ -679,6 +679,9 @@ _notmuch_config_list_built_with () printf ("%sretry_lock=%s\n", BUILT_WITH_PREFIX, notmuch_built_with ("retry_lock") ? "true" : "false"); + printf ("%ssexpr_query=%s\n", + BUILT_WITH_PREFIX, + notmuch_built_with ("sexpr_query") ? "true" : "false"); } static int |
