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 8C4421396DA for ; Sat, 4 Nov 2017 23:51:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C857AE0E43; Sat, 4 Nov 2017 23:51:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 A3B2FE0E43 for ; Sat, 4 Nov 2017 23:51:05 +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 624E133BF43 for ; Sat, 4 Nov 2017 23:51:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C8ED69529 for ; Sat, 4 Nov 2017 23:51:02 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1509839443.cc39765d64adba9bc7ad8d0764aa93f238f3480b.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libsdl2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libsdl2/libsdl2-2.0.5-r1.ebuild media-libs/libsdl2/libsdl2-2.0.6.ebuild media-libs/libsdl2/libsdl2-2.0.7.ebuild X-VCS-Directories: media-libs/libsdl2/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: cc39765d64adba9bc7ad8d0764aa93f238f3480b X-VCS-Branch: master Date: Sat, 4 Nov 2017 23:51:02 +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-Archives-Salt: a3a4ede1-79b2-4b52-afc4-a0ae0a6ebefe X-Archives-Hash: 4704e601193f01223faa50a74b135156 commit: cc39765d64adba9bc7ad8d0764aa93f238f3480b Author: Marty E. Plummer protonmail com> AuthorDate: Tue May 16 20:25:42 2017 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Sat Nov 4 23:50:43 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc39765d media-libs/libsdl2: --enable-loadso on windows For opengl to work on windows (at least via a mingw-w64 cross-compile) --enable-loadso is required, as they dlopen opengl32.dll to get a handle. Bug: https://bugs.gentoo.org/636542 Signed-off-by: Marty E. Plummer protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/4649 media-libs/libsdl2/libsdl2-2.0.5-r1.ebuild | 2 +- media-libs/libsdl2/libsdl2-2.0.6.ebuild | 2 +- media-libs/libsdl2/libsdl2-2.0.7.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/media-libs/libsdl2/libsdl2-2.0.5-r1.ebuild b/media-libs/libsdl2/libsdl2-2.0.5-r1.ebuild index f5f05fb0c9b..308223bd1d9 100644 --- a/media-libs/libsdl2/libsdl2-2.0.5-r1.ebuild +++ b/media-libs/libsdl2/libsdl2-2.0.5-r1.ebuild @@ -96,7 +96,7 @@ multilib_src_configure() { $(use_enable threads) \ --enable-timers \ --enable-file \ - --disable-loadso \ + $(use_enable kernel_Winnt loadso) \ --enable-cpuinfo \ --enable-assembly \ $(use_enable cpu_flags_x86_sse ssemath) \ diff --git a/media-libs/libsdl2/libsdl2-2.0.6.ebuild b/media-libs/libsdl2/libsdl2-2.0.6.ebuild index 4117b57c829..96b9e931240 100644 --- a/media-libs/libsdl2/libsdl2-2.0.6.ebuild +++ b/media-libs/libsdl2/libsdl2-2.0.6.ebuild @@ -99,7 +99,7 @@ multilib_src_configure() { $(use_enable threads) --enable-timers --enable-file - --disable-loadso + $(use_enable kernel_Winnt loadso) --enable-cpuinfo --enable-assembly $(use_enable cpu_flags_x86_sse ssemath) diff --git a/media-libs/libsdl2/libsdl2-2.0.7.ebuild b/media-libs/libsdl2/libsdl2-2.0.7.ebuild index 4117b57c829..96b9e931240 100644 --- a/media-libs/libsdl2/libsdl2-2.0.7.ebuild +++ b/media-libs/libsdl2/libsdl2-2.0.7.ebuild @@ -99,7 +99,7 @@ multilib_src_configure() { $(use_enable threads) --enable-timers --enable-file - --disable-loadso + $(use_enable kernel_Winnt loadso) --enable-cpuinfo --enable-assembly $(use_enable cpu_flags_x86_sse ssemath)