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 9B2D413835A for ; Thu, 25 Mar 2021 19:31:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 909E9E07D8; Thu, 25 Mar 2021 19:31:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 7921DE07D8 for ; Thu, 25 Mar 2021 19:31:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 5967F340CFB for ; Thu, 25 Mar 2021 19:31:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 22D15632 for ; Thu, 25 Mar 2021 19:31:33 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1616700650.96daf7311fef02995de51e9f4df97fc9b81dadc3.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/tg_owt/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/tg_owt/tg_owt-0_pre20210309.ebuild X-VCS-Directories: media-libs/tg_owt/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 96daf7311fef02995de51e9f4df97fc9b81dadc3 X-VCS-Branch: master Date: Thu, 25 Mar 2021 19:31:33 +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: 67d9092f-dd6a-4666-90cd-ca8072fb195d X-Archives-Hash: e4b5fbbccbb55530cd42294081c03f45 commit: 96daf7311fef02995de51e9f4df97fc9b81dadc3 Author: Georgy Yakovlev gentoo org> AuthorDate: Thu Mar 25 19:14:20 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Thu Mar 25 19:30:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96daf731 media-libs/tg_owt: strip desktop_capture module from build This allows to build tg on platforms without SSE2. desktop_capture module is for mac only anyway. See-also: https://github.com/desktop-app/tg_owt/pull/57 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Georgy Yakovlev gentoo.org> media-libs/tg_owt/tg_owt-0_pre20210309.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/media-libs/tg_owt/tg_owt-0_pre20210309.ebuild b/media-libs/tg_owt/tg_owt-0_pre20210309.ebuild index 9b9e8fe2fc6..6401fb3d793 100644 --- a/media-libs/tg_owt/tg_owt-0_pre20210309.ebuild +++ b/media-libs/tg_owt/tg_owt-0_pre20210309.ebuild @@ -1,4 +1,4 @@ -# Copyright 2020 Gentoo Authors +# Copyright 2020-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -63,6 +63,11 @@ src_prepare() { # Can cause race conditions when no webcam is available or webcam is blocked # See https://bugs.debian.org/982556 sed -i -e 's/#ifndef NO_MAIN_THREAD_WRAPPING/#if 0/' src/rtc_base/thread.cc || die + + # Causes forced inclusion of SSE2, only needed on MAC + # https://github.com/desktop-app/tg_owt/pull/57 + sed -i '/modules\/desktop_capture/d' CMakeLists.txt || die + cmake_src_prepare }