commit: 4f406de6080bafb8ad559104d635757120ce7321
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 29 20:36:26 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Oct 29 20:36:26 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f406de6
media-libs/exempi: force --enable-static to workaround build failure
I bumped to EAPI 8 at the last minute and meant to add this in.
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/exempi/exempi-2.6.2.ebuild | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/media-libs/exempi/exempi-2.6.2.ebuild
b/media-libs/exempi/exempi-2.6.2.ebuild
index 9ce6104f4934..4a29b9ce197c 100644
--- a/media-libs/exempi/exempi-2.6.2.ebuild
+++ b/media-libs/exempi/exempi-2.6.2.ebuild
@@ -42,8 +42,10 @@ src_prepare() {
}
src_configure() {
- # Valgrind detection is "disabled" due to bug #295875
+ # - --enable-static as --disable-static breaks build
+ # - Valgrind detection is "disabled" due to bug #295875
econf \
+ --enable-static \
$(use_enable test unittest) \
VALGRIND=""
}