diff options
| author | Andreas Enge <andreas@enge.fr> | 2025-08-04 17:41:14 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-08-04 17:42:41 +0200 |
| commit | afd532d428e3adf99d06bb6e7ea0617dadeeccd6 (patch) | |
| tree | 17f9e4f09518c3cdf91283dbee55752dcba0d79f | |
| parent | 0c771ca1cb72c4173c48895521c2ef6102ed50ac (diff) | |
gnu: guitarix: Fix build with gcc-14.
* gnu/packages/audio.scm (guitarix)[arguments]<#:phases>{fix-includes}:
New phase.
Change-Id: Ib1dc5204dc62f1121c52e734a782dd2c8f8bb49e
| -rw-r--r-- | gnu/packages/audio.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index f47cdc22c17..622ce50020f 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2850,6 +2850,11 @@ partial release of the General MIDI sound set.") (string-append "--ldflags=-Wl,-rpath=" #$output "/lib")) #:phases '(modify-phases %standard-phases + (add-after 'unpack 'fix-includes + (lambda _ + (substitute* "src/LV2/DSP/gx_common.h" + (("#include <cstdlib>" all) + (string-append all "\n#include <cstdint>"))))) (add-after 'unpack 'python3.11-compatibility (lambda _ (substitute* "wscript" |
