diff options
author | Patrick Lauer <patrick@gentoo.org> | 2021-12-24 07:01:16 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2021-12-24 07:01:26 +0000 |
commit | ee9b4eeb80cc48a3a03cda3b7e3f51639e2df195 (patch) | |
tree | 217c8a7c86d4dbd218e990d4b84072935ef1d00b /media-libs/libaom | |
parent | net-analyzer/linkchecker: drop old (diff) | |
download | gentoo-ee9b4eeb80cc48a3a03cda3b7e3f51639e2df195.tar.gz gentoo-ee9b4eeb80cc48a3a03cda3b7e3f51639e2df195.tar.bz2 gentoo-ee9b4eeb80cc48a3a03cda3b7e3f51639e2df195.zip |
media-libs/libaom: Fix build
CONFIG_TUNE_BUTTERAUGLI is used as a macro, setting it to OFF
causes build failures as OFF is undefined - set it to 0 instead
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Patrick Lauer <patrick@gentoo.org>
Diffstat (limited to 'media-libs/libaom')
-rw-r--r-- | media-libs/libaom/libaom-3.2.0.ebuild | 2 | ||||
-rw-r--r-- | media-libs/libaom/libaom-9999.ebuild | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/media-libs/libaom/libaom-3.2.0.ebuild b/media-libs/libaom/libaom-3.2.0.ebuild index 9184fd8bca81..69bc7fc97fbd 100644 --- a/media-libs/libaom/libaom-3.2.0.ebuild +++ b/media-libs/libaom/libaom-3.2.0.ebuild @@ -52,7 +52,7 @@ multilib_src_configure() { -DENABLE_WERROR=OFF # Needs libjxl, currently unpackaged. - -DCONFIG_TUNE_BUTTERAUGLI=OFF + -DCONFIG_TUNE_BUTTERAUGLI=0 # neon support is assumed to be always enabled on arm64 -DENABLE_NEON=$(usex cpu_flags_arm_neon ON $(usex arm64 ON OFF)) diff --git a/media-libs/libaom/libaom-9999.ebuild b/media-libs/libaom/libaom-9999.ebuild index 9184fd8bca81..69bc7fc97fbd 100644 --- a/media-libs/libaom/libaom-9999.ebuild +++ b/media-libs/libaom/libaom-9999.ebuild @@ -52,7 +52,7 @@ multilib_src_configure() { -DENABLE_WERROR=OFF # Needs libjxl, currently unpackaged. - -DCONFIG_TUNE_BUTTERAUGLI=OFF + -DCONFIG_TUNE_BUTTERAUGLI=0 # neon support is assumed to be always enabled on arm64 -DENABLE_NEON=$(usex cpu_flags_arm_neon ON $(usex arm64 ON OFF)) |