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 A21AB138335 for ; Wed, 13 Feb 2019 15:19:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98D14E0917; Wed, 13 Feb 2019 15:19:12 +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 705D8E0905 for ; Wed, 13 Feb 2019 15:19:12 +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 7386E340F65 for ; Wed, 13 Feb 2019 15:19:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1861F541 for ; Wed, 13 Feb 2019 15:19:10 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1550071138.8982c5f26e304b72270c49fbd74ec097a3383ebe.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/ffmpeg/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/ffmpeg/ffmpeg-4.1.1.ebuild media-video/ffmpeg/ffmpeg-9999.ebuild X-VCS-Directories: media-video/ffmpeg/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 8982c5f26e304b72270c49fbd74ec097a3383ebe X-VCS-Branch: master Date: Wed, 13 Feb 2019 15:19:10 +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: 0ecae3a8-907a-4eb6-a0c5-2c352a4f2ab3 X-Archives-Hash: ff0ba4bb0fb2c693f903ce5eb7d6f3ae commit: 8982c5f26e304b72270c49fbd74ec097a3383ebe Author: Alexis Ballier gentoo org> AuthorDate: Wed Feb 13 15:12:52 2019 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Wed Feb 13 15:18:58 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8982c5f2 media-video/ffmpeg: fix nosdl configure warning Closes: https://bugs.gentoo.org/671200 Package-Manager: Portage-2.3.60, Repoman-2.3.12 Signed-off-by: Alexis Ballier gentoo.org> media-video/ffmpeg/ffmpeg-4.1.1.ebuild | 2 +- media-video/ffmpeg/ffmpeg-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/media-video/ffmpeg/ffmpeg-4.1.1.ebuild b/media-video/ffmpeg/ffmpeg-4.1.1.ebuild index 96c94279392..3e1c8db5261 100644 --- a/media-video/ffmpeg/ffmpeg-4.1.1.ebuild +++ b/media-video/ffmpeg/ffmpeg-4.1.1.ebuild @@ -349,7 +349,7 @@ multilib_src_configure() { done # Outdevs - for i in alsa oss sdl ; do + for i in alsa oss ; do use ${i} || myconf+=( --disable-outdev=${i} ) done diff --git a/media-video/ffmpeg/ffmpeg-9999.ebuild b/media-video/ffmpeg/ffmpeg-9999.ebuild index 97690b6d06d..366fd5d7a5b 100644 --- a/media-video/ffmpeg/ffmpeg-9999.ebuild +++ b/media-video/ffmpeg/ffmpeg-9999.ebuild @@ -349,7 +349,7 @@ multilib_src_configure() { done # Outdevs - for i in alsa oss sdl ; do + for i in alsa oss ; do use ${i} || myconf+=( --disable-outdev=${i} ) done