From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-3.3 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_HI,SPF_HELO_NONE, SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from mail.smrk.net (mail.smrk.net [IPv6:2001:19f0:6c01:2788:5400:4ff:fe27:adaa]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA512) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 511471F55F for ; Sat, 2 Sep 2023 11:07:44 +0000 (UTC) Authentication-Results: dcvr.yhbt.net; dkim=pass (2048-bit key; unprotected) header.d=smrk.net header.i=@smrk.net header.a=rsa-sha256 header.s=20221002 header.b=osBastRI; dkim-atps=neutral DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=smrk.net; s=20221002; t=1693652862; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=ZXhk8/y+TjP8XkOb2R9K7ZKAy4JvElci6A2K7kGO7xQ=; b=osBastRIJbNQ1a5w+afrijJqTNZFXXNPL3U/EjlQEMoNbeF8jy1gWwqH620RHyNRyOUEbz GtL4gOVLSZYpCR1+hNADI/QLTs3Mh2p10O5PAE7E0mGIb5VqhoHqIQhL5NgcpQUEybEBEs vDjyOGmFy9z6UygtCxiFS5pDNKJY0i2QslrPuOgaLp0HHFUwX2gYMojKAZ87xojwXd62eY /MMbJtE8MPdywMrye4e5RACiFeS6CgHAJwD+/RXQq1pNebAkHNPF328samlrAvRftn9TV5 5hTQNMRufQhJqUSvOf8QvyzJfjDnioGztkm6HmVJ75JPuUHbEZedTQwIHLYizQ== Received: from localhost ( [192.168.5.2]) by smrk (OpenSMTPD) with ESMTPSA id 1d07bf44 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Sat, 2 Sep 2023 13:07:42 +0200 (CEST) From: =?utf-8?B?xaB0xJtww6FuIE7Em21lYw==?= To: Eric Wong Cc: meta@public-inbox.org Subject: [PATCH v2] Clarify Inline::C dependency (optional on Linux, required elsewhere) In-Reply-To: <20230902125449+0200.22309-stepnem@smrk.net> References: <20230830051045.330641-1-e@80x24.org> <20230830051045.330641-1-e@80x24.org> <20230830143409+0200.929541-stepnem@smrk.net> <20230830211849.M275594@dcvr> <20230831111152+0200.360729-stepnem@smrk.net> <20230831192650+0200.929387-stepnem@smrk.net> <20230901110903.M876537@dcvr> <20230902125449+0200.22309-stepnem@smrk.net> User-Agent: Notmuch/0.37 (https://notmuchmail.org) Emacs/30.0.50 (x86_64-pc-linux-gnu) Date: Sat, 02 Sep 2023 13:07:41 +0200 Message-ID: <20230902130741+0200.224663-stepnem@smrk.net> MIME-Version: 1.0 Content-Type: text/plain List-Id: Link: https://public-inbox.org/meta/20230901110903.M876537@dcvr/ Fixes: 88c7c7c26b44 ("lei: wire up pure Perl sendmsg/recvmsg for Linux users") Fixes: acefd91b302d ("syscall: implement sendmsg+recvmsg in pure Perl") --- v2: expand tabs, sorry about that... Documentation/lei-overview.pod | 12 +++++++----- INSTALL | 7 ++++--- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/Documentation/lei-overview.pod b/Documentation/lei-overview.pod index 7095b504cdb8..e9a97d64fb56 100644 --- a/Documentation/lei-overview.pod +++ b/Documentation/lei-overview.pod @@ -119,11 +119,13 @@ code repository. =head1 PERFORMANCE NOTES -L is required, lei runs as a background daemon to reduce -startup costs and can provide real-time L/L -Maildir monitoring. L (p5-IO-KQueue on FreeBSD) and -L (liblinux-inotify2-perl and perl-Linux-Inotify2 in -.deb and .rpm-based distros, respectively) are recommended. +L is required on BSDs and can speed things up on Linux. + +lei runs as a background daemon to reduce startup costs and can +provide real-time L/L Maildir monitoring. +L (p5-IO-KQueue on FreeBSD) and L +(liblinux-inotify2-perl and perl-Linux-Inotify2 in .deb and .rpm-based +distros, respectively) are recommended. L is optional (libsocket-msghdr-perl in Debian), and further improves startup performance. Its effect is most felt diff --git a/INSTALL b/INSTALL index 5f080f2889ce..8f08a11f7ee1 100644 --- a/INSTALL +++ b/INSTALL @@ -60,7 +60,7 @@ Where "deb" indicates package names for Debian-derived distributions, "pkg" is for the FreeBSD package (maybe other common BSDs, too), and "rpm" is for RPM-based distributions (only known to work on Fedora). -Numerous optional modules are likely to be useful as well: +Numerous other modules are likely to be useful as well: - DBD::SQLite deb: libdbd-sqlite3-perl pkg: p5-DBD-SQLite @@ -76,8 +76,9 @@ Numerous optional modules are likely to be useful as well: - Inline::C deb: libinline-c-perl pkg: p5-Inline-C rpm: perl-Inline (or perl-Inline-C) - (speeds up process spawning on Linux, - see public-inbox-daemon(8)) + (required for lei on *BSD; speeds up process + spawning on Linux, see + public-inbox-daemon(8)) - Email::Address::XS deb: libemail-address-xs-perl pkg: p5-Email-Address-XS -- 2.42.0