aboutsummaryrefslogtreecommitdiffstats
path: root/lib/notmuch/notmuch.go
diff options
context:
space:
mode:
authorTim Culverhouse <tim@timculverhouse.com>2023-08-29 13:15:45 -0500
committerRobin Jarry <robin@jarry.cc>2023-08-30 22:10:20 +0200
commit3a55b8e6fd51c3dda1ea71c6806f2ee2d71c1065 (patch)
tree93a83c576c8c4cad8164d6b7ef65dbb185aa8390 /lib/notmuch/notmuch.go
parentab7d32c1fe5182a7a7631bb4dc35bed49af752c0 (diff)
downloadaerc-3a55b8e6fd51c3dda1ea71c6806f2ee2d71c1065.tar.gz
notmuch: add notmuch bindings
aerc is using an unmaintained fork of a not-well-functioning notmuch binding library. Add custom bindings directly into the aerc repo to make them more maintainable and more customizable to our needs. Signed-off-by: Tim Culverhouse <tim@timculverhouse.com> Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'lib/notmuch/notmuch.go')
-rw-r--r--lib/notmuch/notmuch.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/notmuch/notmuch.go b/lib/notmuch/notmuch.go
new file mode 100644
index 00000000..9b13878b
--- /dev/null
+++ b/lib/notmuch/notmuch.go
@@ -0,0 +1,21 @@
+//go:build notmuch
+// +build notmuch
+
+package notmuch
+
+/*
+#cgo LDFLAGS: -lnotmuch
+
+#include <stdlib.h>
+#include <notmuch.h>
+
+#if !LIBNOTMUCH_CHECK_VERSION(5, 6, 0)
+#error "aerc requires libnotmuch.so.5.6 or later"
+#endif
+
+*/
+import "C"
+
+// NOTE: Any CGO call which passes a reference to a pointer (**object) will fail
+// gocritic:dupSubExpr. All of these calls are set to be ignored by the linter
+// Reference: https://github.com/go-critic/go-critic/issues/897