diff options
author | Sam James <sam@gentoo.org> | 2024-11-26 06:46:53 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-11-26 06:46:53 +0000 |
commit | 30276cb5e44763a6969f6bf3079e38a0c4b0fb31 (patch) | |
tree | 9b86348be2efc08e679ca2fb1661f1f1955d5d19 /app-accessibility | |
parent | dev-libs/libburn: build w/ -std=gnu17 (diff) | |
download | gentoo-30276cb5e44763a6969f6bf3079e38a0c4b0fb31.tar.gz gentoo-30276cb5e44763a6969f6bf3079e38a0c4b0fb31.tar.bz2 gentoo-30276cb5e44763a6969f6bf3079e38a0c4b0fb31.zip |
app-accessibility/speech-dispatcher: build w/ -std=gnu17
Closes: https://bugs.gentoo.org/944193
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-accessibility')
-rw-r--r-- | app-accessibility/speech-dispatcher/speech-dispatcher-0.11.5.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app-accessibility/speech-dispatcher/speech-dispatcher-0.11.5.ebuild b/app-accessibility/speech-dispatcher/speech-dispatcher-0.11.5.ebuild index 345f00fe0fcd..7c052deef358 100644 --- a/app-accessibility/speech-dispatcher/speech-dispatcher-0.11.5.ebuild +++ b/app-accessibility/speech-dispatcher/speech-dispatcher-0.11.5.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..13} ) -inherit python-r1 systemd +inherit flag-o-matic python-r1 systemd DESCRIPTION="Speech synthesis interface" HOMEPAGE="https://freebsoft.org/speechd" @@ -35,6 +35,9 @@ BDEPEND=" virtual/pkgconfig" src_configure() { + # bug #944193 + append-cflags -std=gnu17 + # bug 573732 export GIT_CEILING_DIRECTORIES="${WORKDIR}" |