diff options
author | Robin Jarry <robin@jarry.cc> | 2023-03-03 00:26:05 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-03-03 21:42:50 +0100 |
commit | d5e47e300a42ed64c17e4b391b77234e22c9f915 (patch) | |
tree | 2d54528dbceafbe404c2784ce2978165fb971d44 /Makefile | |
parent | b63c93563c622e70cda7006c1816dc6b59e75844 (diff) | |
download | aerc-d5e47e300a42ed64c17e4b391b77234e22c9f915.tar.gz |
mk: detect if notmuch headers & libs are available
Detect if notmuch is available by trying to compile a minimal go program
that uses the notmuch.h header and links to libnotmuch.so.
If that succeeds, set the default GOFLAGS value to -tags=notmuch.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Tested-by: Inwit <inwit@sindominio.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -10,7 +10,8 @@ SHAREDIR?=$(PREFIX)/share/aerc LIBEXECDIR?=$(PREFIX)/libexec/aerc MANDIR?=$(PREFIX)/share/man GO?=go -GOFLAGS?= +default_goflags!=GO=$(GO) contrib/check-notmuch.sh 2>/dev/null && echo -tags=notmuch +GOFLAGS?=$(default_goflags) BUILD_OPTS?=-trimpath flags!=echo -- $(GOFLAGS) | base64 | tr -d '\n' # ignore environment variable |