mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: espeak: Build with the C++ 98 standard.
Fixes <https://bugs.gnu.org/37672>. Reported by Bradley Haggerty <bradigger@gmail.com>. * gnu/packages/speech.scm (espeak)[arguments]: Add CXXFLAGS to #:make-flags.
This commit is contained in:
parent
e0dcd84d51
commit
636037fd0a
1 changed files with 2 additions and 0 deletions
|
@ -69,6 +69,8 @@ (define-public espeak
|
||||||
(string-append "LDFLAGS=-Wl,-rpath="
|
(string-append "LDFLAGS=-Wl,-rpath="
|
||||||
(assoc-ref %outputs "out")
|
(assoc-ref %outputs "out")
|
||||||
"/lib")
|
"/lib")
|
||||||
|
;; The package fails to build with newer C++ standards.
|
||||||
|
"CXXFLAGS=-std=c++98"
|
||||||
"AUDIO=pulseaudio")
|
"AUDIO=pulseaudio")
|
||||||
#:tests? #f ; no check target
|
#:tests? #f ; no check target
|
||||||
#:phases
|
#:phases
|
||||||
|
|
Loading…
Reference in a new issue