diff options
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/linux.scm | 3 | ||||
| -rw-r--r-- | gnu/packages/patches/proot-add-missing-include.patch | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index bef3ea2fcce..ab6335a5a68 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -9272,7 +9272,8 @@ Text-based output formats: CSV, XML, Netfilter's LOG, Netfilter's conntrack (base32 "186qsg4yvisqjgf8w5jxhnlig7x341vpqwcgp8as3r59qmqkpmk7")) ;; Waiting for upstream inclusion at ;; https://github.com/proot-me/proot/pull/355 - (patches (search-patches "proot-add-clone3.patch")))) + (patches (search-patches "proot-add-clone3.patch" + "proot-add-missing-include.patch")))) (build-system gnu-build-system) ;; Many architectures are not supported (see: ;; https://github.com/proot-me/proot/blob/master/src/arch.h#L51). diff --git a/gnu/packages/patches/proot-add-missing-include.patch b/gnu/packages/patches/proot-add-missing-include.patch new file mode 100644 index 00000000000..209be3dd61a --- /dev/null +++ b/gnu/packages/patches/proot-add-missing-include.patch @@ -0,0 +1,15 @@ +Add missing include to avoid implicit function declaration, prohibited with +GCC 14. + +diff --git a/src/tracee/tracee.c b/src/tracee/tracee.c +index 9b16f6aa..39308c32 100644 +--- a/src/tracee/tracee.c ++++ b/src/tracee/tracee.c +@@ -44,6 +44,7 @@ + #include "cli/note.h" + + #include "compat.h" ++#include "mem.h" + + #ifndef __W_STOPCODE + #define __W_STOPCODE(sig) ((sig) <<8 | 0x7f) |
