diff options
author | 2024-11-17 03:04:49 +0000 | |
---|---|---|
committer | 2024-11-17 03:04:49 +0000 | |
commit | 6ca13c446db93e30d53f59d49a9f86caca982f26 (patch) | |
tree | 5e8ce3efa8f18bfbf440da544b73a95d0c0b3ea0 /app-crypt | |
parent | sys-libs/gdbm: build w/ -std=gnu17 (diff) | |
download | gentoo-6ca13c446db93e30d53f59d49a9f86caca982f26.tar.gz gentoo-6ca13c446db93e30d53f59d49a9f86caca982f26.tar.bz2 gentoo-6ca13c446db93e30d53f59d49a9f86caca982f26.zip |
app-crypt/p11-kit: build w/ -std=gnu17
Bug: https://github.com/p11-glue/p11-kit/issues/664
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/p11-kit/p11-kit-0.25.5.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app-crypt/p11-kit/p11-kit-0.25.5.ebuild b/app-crypt/p11-kit/p11-kit-0.25.5.ebuild index 0c23a73251f2..a45bc6063cc8 100644 --- a/app-crypt/p11-kit/p11-kit-0.25.5.ebuild +++ b/app-crypt/p11-kit/p11-kit-0.25.5.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..13} ) -inherit bash-completion-r1 meson-multilib python-any-r1 +inherit bash-completion-r1 flag-o-matic meson-multilib python-any-r1 DESCRIPTION="Provides a standard configuration setup for installing PKCS#11" HOMEPAGE="https://p11-glue.github.io/p11-glue/p11-kit.html" @@ -43,6 +43,9 @@ src_prepare() { } multilib_src_configure() { + # https://github.com/p11-glue/p11-kit/issues/664 + append-cflags -std=gnu17 + # Disable unsafe tests, bug#502088 export FAKED_MODE=1 |