diff options
author | Sam James <sam@gentoo.org> | 2024-01-03 06:38:03 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-01-03 06:38:03 +0000 |
commit | dba143d2e7f2485076b975290c8cff16202a5f6d (patch) | |
tree | da0214633c3e70f012baa7a77d5ec42fd7d5cd09 /media-video/ffmpeg/ffmpeg-9999.ebuild | |
parent | media-video/ffmpeg: backport texinfo fixes to 4.4 (diff) | |
download | gentoo-dba143d2e7f2485076b975290c8cff16202a5f6d.tar.gz gentoo-dba143d2e7f2485076b975290c8cff16202a5f6d.tar.bz2 gentoo-dba143d2e7f2485076b975290c8cff16202a5f6d.zip |
media-video/ffmpeg: enable USE=pic by default
binutils-2.41 is configured in Gentoo to reject textrels by default which
the non-PIC-safe x86 (32-bit) asm requires.
Start by defaulting USE=pic to on in general but we can remove the USE flag
later and then just pass --disable-asm for 32-bit x86.
Bug: https://bugs.gentoo.org/916067
Bug: https://bugs.gentoo.org/920808
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-video/ffmpeg/ffmpeg-9999.ebuild')
-rw-r--r-- | media-video/ffmpeg/ffmpeg-9999.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media-video/ffmpeg/ffmpeg-9999.ebuild b/media-video/ffmpeg/ffmpeg-9999.ebuild index 188eb6e7b762..8f10926eaca6 100644 --- a/media-video/ffmpeg/ffmpeg-9999.ebuild +++ b/media-video/ffmpeg/ffmpeg-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -108,7 +108,7 @@ FFMPEG_ENCODER_FLAG_MAP=( ) IUSE=" - alsa chromium doc +encode oss pic sndio static-libs test v4l + alsa chromium doc +encode oss +pic sndio static-libs test v4l ${FFMPEG_FLAG_MAP[@]%:*} ${FFMPEG_ENCODER_FLAG_MAP[@]%:*} " |