Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/exempi/
Date: Sat, 29 Oct 2022 20:36:38
Message-Id: 1667075786.4f406de6080bafb8ad559104d635757120ce7321.sam@gentoo
1 commit: 4f406de6080bafb8ad559104d635757120ce7321
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 29 20:36:26 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 29 20:36:26 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f406de6
7
8 media-libs/exempi: force --enable-static to workaround build failure
9
10 I bumped to EAPI 8 at the last minute and meant to add this in.
11
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 media-libs/exempi/exempi-2.6.2.ebuild | 4 +++-
15 1 file changed, 3 insertions(+), 1 deletion(-)
16
17 diff --git a/media-libs/exempi/exempi-2.6.2.ebuild b/media-libs/exempi/exempi-2.6.2.ebuild
18 index 9ce6104f4934..4a29b9ce197c 100644
19 --- a/media-libs/exempi/exempi-2.6.2.ebuild
20 +++ b/media-libs/exempi/exempi-2.6.2.ebuild
21 @@ -42,8 +42,10 @@ src_prepare() {
22 }
23
24 src_configure() {
25 - # Valgrind detection is "disabled" due to bug #295875
26 + # - --enable-static as --disable-static breaks build
27 + # - Valgrind detection is "disabled" due to bug #295875
28 econf \
29 + --enable-static \
30 $(use_enable test unittest) \
31 VALGRIND=""
32 }