mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: libcddb: Fix build with gcc-14.
* gnu/packages/cdrom.scm (libcddb)[arguments]: Add #:configure-flags to relax gcc-14's strictness. Change-Id: I463872e31d6f8c42136e6e04cf4013c2261d43cc
This commit is contained in:
parent
2c2cea52f5
commit
865e997114
1 changed files with 8 additions and 1 deletions
|
@ -16,6 +16,7 @@
|
|||
;;; Copyright © 2020 Timotej Lazar <timotej.lazar@araneo.si>
|
||||
;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
|
||||
;;; Copyright © 2024 Julian Flake <flake@uni-koblenz.de>
|
||||
;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -89,7 +90,13 @@ (define-public libcddb
|
|||
(base32
|
||||
"0fr21a7vprdyy1bq6s99m0x420c9jm5fipsd63pqv8qyfkhhxkim"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments '(#:tests? #f)) ; tests rely on access to external servers
|
||||
(arguments
|
||||
(list
|
||||
#:tests? #f ;tests rely on access to external servers
|
||||
#:configure-flags #~(list
|
||||
#$(string-append
|
||||
"CFLAGS=-g -O2"
|
||||
" -Wno-error=incompatible-pointer-types"))))
|
||||
(home-page "https://libcddb.sourceforge.net/")
|
||||
(synopsis "C library to access data on a CDDB server")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue