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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 350BA158014 for ; Sun, 29 Aug 2021 19:50:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 67217E0844; Sun, 29 Aug 2021 19:50:48 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4C769E0844 for ; Sun, 29 Aug 2021 19:50:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6CAEE342B7C for ; Sun, 29 Aug 2021 19:50:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E166D74 for ; Sun, 29 Aug 2021 19:50:43 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1630266623.6abbca1de3c6edd85e9e3361aaa7b39d98365443.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libwebsockets/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libwebsockets/libwebsockets-4.2.1.ebuild X-VCS-Directories: net-libs/libwebsockets/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: 6abbca1de3c6edd85e9e3361aaa7b39d98365443 X-VCS-Branch: master Date: Sun, 29 Aug 2021 19:50:43 +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: cf2a24ba-879b-45f4-b70e-95931cd53113 X-Archives-Hash: 19dad4a1e73550b217bb45600cb94cae commit: 6abbca1de3c6edd85e9e3361aaa7b39d98365443 Author: Jakov Smolić gentoo org> AuthorDate: Sun Aug 29 19:48:49 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Sun Aug 29 19:50:23 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6abbca1d net-libs/libwebsockets: Turn off deprecated API warnings in 4.2.1 * This is added upstream as a general openssl-3 workaround for now Closes: https://bugs.gentoo.org/805164 Signed-off-by: Jakov Smolić gentoo.org> net-libs/libwebsockets/libwebsockets-4.2.1.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/net-libs/libwebsockets/libwebsockets-4.2.1.ebuild b/net-libs/libwebsockets/libwebsockets-4.2.1.ebuild index e2cb3c1838c..180d8b2a195 100644 --- a/net-libs/libwebsockets/libwebsockets-4.2.1.ebuild +++ b/net-libs/libwebsockets/libwebsockets-4.2.1.ebuild @@ -51,6 +51,7 @@ src_configure() { -DLWS_HAVE_LIBCAP=$(usex caps) -DLWS_IPV6=$(usex ipv6) -DLWS_ROLE_DBUS=$(usex dbus) + -DLWS_SUPPRESS_DEPRECATED_API_WARNINGS=ON -DLWS_WITHOUT_CLIENT=$(usex !client) -DLWS_WITHOUT_TEST_CLIENT=$(usex !client) -DLWS_WITH_ACCESS_LOG=$(usex access-log)