From 15a4cc7d0a84870ba04307154f394f9bdc98fd31 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Sat, 11 Dec 2021 20:53:10 +0100 Subject: imap: fix build on macos Fix the following build error on mac os: worker/imap/worker.go:368:29: undefined: syscall.TCP_KEEPCNT worker/imap/worker.go:376:29: undefined: syscall.TCP_KEEPINTVL These symbols are not defined on darwin. Fixes: 5dfeff75f368 ("imap: add tcp connection options") Signed-off-by: Robin Jarry --- doc/aerc-imap.5.scd | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'doc') diff --git a/doc/aerc-imap.5.scd b/doc/aerc-imap.5.scd index e6a44606..478dbae3 100644 --- a/doc/aerc-imap.5.scd +++ b/doc/aerc-imap.5.scd @@ -82,6 +82,9 @@ available: By default, the system tcp socket settings are used. If keepalive-period is specified, this option defaults to 3 probes. + This option is only supported on linux. On other platforms, it will be + ignored. + *keepalive-interval* The interval between subsequential keepalive probes, regardless of what the connection has exchanged in the meantime. Fractional seconds are @@ -90,6 +93,9 @@ available: By default, the system tcp socket settings are used. If keepalive-period is specified, this option defaults to 3s. + This option is only supported on linux. On other platforms, it will be + ignored. + # SEE ALSO *aerc*(1) *aerc-config*(5) -- cgit