mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
gnu: t4k-common: Fix building with newer gcc.
* gnu/packages/education.scm (t4l-common)[source]: Add snippet to update code for stricter checks with newer gcc versions.
This commit is contained in:
parent
a940689896
commit
4dd62947f1
1 changed files with 7 additions and 2 deletions
|
@ -921,8 +921,13 @@ (define-public t4k-common
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "13q02xpmps9qg8zrzzy2gzv4a6afgi28lxk4z242j780v0gphchp"))
|
||||
(patches
|
||||
(search-patches "t4k-common-libpng16.patch"))))
|
||||
(patches (search-patches "t4k-common-libpng16.patch"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
`(begin
|
||||
(substitute* "src/t4k_common.h"
|
||||
(("char wrapped_lines") "extern char wrapped_lines"))
|
||||
#t))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ;FIXME: cannot find how to run tests
|
||||
|
|
Loading…
Reference in a new issue