diff options
| author | Sughosha <sughosha@disroot.org> | 2025-08-18 15:50:01 +0530 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-08-18 19:01:39 +0200 |
| commit | 34453b97005ff86355399df89c8827c57839d9c7 (patch) | |
| tree | 68121fd7e9ac17c5dedf6a4874965fa4c44eef3b /gnu/packages/patches/zynaddsubfx-3.0.6-include-cstdint.patch | |
| parent | c8ebd5d26f29bf3d8e7e1e8219c26252edffe709 (diff) | |
gnu: zynaddsubfx: Fix build with gcc-14.
* gnu/packages/patches/zynaddsubfx-3.0.6-include-cstdint.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add the patch.
* gnu/packages/music.scm (zynaddsubfx)[source]: Add it.
[home-page]: Update URL.
Change-Id: I7a90ee849da029bc159dbbaad1d8aae89f503fbe
Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages/patches/zynaddsubfx-3.0.6-include-cstdint.patch')
| -rw-r--r-- | gnu/packages/patches/zynaddsubfx-3.0.6-include-cstdint.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/patches/zynaddsubfx-3.0.6-include-cstdint.patch b/gnu/packages/patches/zynaddsubfx-3.0.6-include-cstdint.patch new file mode 100644 index 0000000000..a1a0444aa8 --- /dev/null +++ b/gnu/packages/patches/zynaddsubfx-3.0.6-include-cstdint.patch @@ -0,0 +1,24 @@ +This patch fixes the compilation error: "uint8_t’ has not been declared". + +diff '--color=auto' -ruN zynaddsubfx-3.0.6-a/src/Misc/Bank.h zynaddsubfx-3.0.6-b/src/Misc/Bank.h +--- zynaddsubfx-3.0.6-a/src/Misc/Bank.h 1970-01-01 05:30:01.000000000 +0530 ++++ zynaddsubfx-3.0.6-b/src/Misc/Bank.h 2025-08-18 14:16:56.928347291 +0530 +@@ -18,6 +18,7 @@ + #include <vector> + #include "../globals.h" + #include "Config.h" ++#include <cstdint> + + //entries in a bank + #define BANK_SIZE 160 +diff '--color=auto' -ruN zynaddsubfx-3.0.6-a/src/Nio/MidiIn.h zynaddsubfx-3.0.6-b/src/Nio/MidiIn.h +--- zynaddsubfx-3.0.6-a/src/Nio/MidiIn.h 1970-01-01 05:30:01.000000000 +0530 ++++ zynaddsubfx-3.0.6-b/src/Nio/MidiIn.h 2025-08-18 14:04:01.993278682 +0530 +@@ -17,6 +17,7 @@ + #define MIDI_IN_H + + #include "Engine.h" ++#include <cstdint> + + namespace zyn { + |
