From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0E34815800A for ; Mon, 28 Aug 2023 18:50:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54C4C2BC014; Mon, 28 Aug 2023 18:50:54 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3DAB02BC014 for ; Mon, 28 Aug 2023 18:50:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6C8C1340D17 for ; Mon, 28 Aug 2023 18:50:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CA1E7B84 for ; Mon, 28 Aug 2023 18:50:51 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1693248588.e828e60c489c9df6bb636b6f67e46657cd935c71.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libmicrohttpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libmicrohttpd/libmicrohttpd-0.9.77.ebuild X-VCS-Directories: net-libs/libmicrohttpd/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: e828e60c489c9df6bb636b6f67e46657cd935c71 X-VCS-Branch: master Date: Mon, 28 Aug 2023 18:50:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 711f7949-6a13-4de9-acf7-3ca3c50b3e15 X-Archives-Hash: a32639160e207976630bb16ba628b54f commit: e828e60c489c9df6bb636b6f67e46657cd935c71 Author: Mike Gilbert gentoo org> AuthorDate: Mon Aug 28 18:49:48 2023 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Mon Aug 28 18:49:48 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e828e60c net-libs/libmicrohttpd: make EVENTFD check non-fatal Closes: https://bugs.gentoo.org/913114 Signed-off-by: Mike Gilbert gentoo.org> net-libs/libmicrohttpd/libmicrohttpd-0.9.77.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.77.ebuild b/net-libs/libmicrohttpd/libmicrohttpd-0.9.77.ebuild index 490e505c1313..fd1fbe4258f4 100644 --- a/net-libs/libmicrohttpd/libmicrohttpd-0.9.77.ebuild +++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.77.ebuild @@ -33,7 +33,7 @@ pkg_pretend() { use epoll && CONFIG_CHECK+=" ~EPOLL" ERROR_EPOLL="EPOLL is not enabled in kernel, but enabled in libmicrohttpd." ERROR_EPOLL+=" libmicrohttpd will fail to start with 'automatic' configuration." - use eventfd && CONFIG_CHECK+=" EVENTFD" + use eventfd && CONFIG_CHECK+=" ~EVENTFD" ERROR_EVENTFD="EVENTFD is not enabled in kernel, but enabled in libmicrohttpd." ERROR_EVENTFD+=" libmicrohttpd will not work." check_extra_config