mirror of
https://github.com/openwrt/packages.git
synced 2025-12-10 12:41:22 +00:00
crun: fix compilation with GCC 15
Need to fix function prototype Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
committed by
Tianling Shen
parent
f6e404e96d
commit
223d62e02c
@@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=crun
|
PKG_NAME:=crun
|
||||||
PKG_VERSION:=1.17
|
PKG_VERSION:=1.17
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://codeload.github.com/containers/crun/tar.gz/$(PKG_VERSION)?
|
PKG_SOURCE_URL:=https://codeload.github.com/containers/crun/tar.gz/$(PKG_VERSION)?
|
||||||
|
|||||||
11
utils/crun/patches/010-gcc15.patch
Normal file
11
utils/crun/patches/010-gcc15.patch
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
--- a/tests/tests_libcrun_fuzzer.c
|
||||||
|
+++ b/tests/tests_libcrun_fuzzer.c
|
||||||
|
@@ -463,7 +463,7 @@ LLVMFuzzerTestOneInput (uint8_t *buf, si
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
-sig_chld ()
|
||||||
|
+sig_chld (int i)
|
||||||
|
{
|
||||||
|
int status;
|
||||||
|
pid_t p;
|
||||||
Reference in New Issue
Block a user