package/crun: bump to version 1.8.4
Changes: https://github.com/containers/crun/releases/tag/1.8.4 Also emoved 0001-src-crun.c-fix-build-without-dlfcn.h.patch, this commit has already existed in the latest version release. Signed-off-by: Xiangyu Chen <xiangyu.chen@windriver.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
6e863bdef4
commit
0f1d33b6c8
@ -1,39 +0,0 @@
|
||||
From 278b9b447bec3fb81bf252eb2fe2c856892ec802 Mon Sep 17 00:00:00 2001
|
||||
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
Date: Fri, 30 Dec 2022 18:40:15 +0100
|
||||
Subject: [PATCH] src/crun.c: fix build without dlfcn.h
|
||||
|
||||
Fix the following build failure without dlfcn.h raised since version 1.7
|
||||
and
|
||||
https://github.com/containers/crun/commit/5837234e9840cd067edd9f6cd2ed9cae9a0e6570:
|
||||
|
||||
src/crun.c:26:10: fatal error: dlfcn.h: No such file or directory
|
||||
26 | #include <dlfcn.h>
|
||||
| ^~~~~~~~~
|
||||
|
||||
Fixes:
|
||||
- http://autobuild.buildroot.org/results/a5f52a7ee757c92c9571261c0ed884d05caeaf2f
|
||||
|
||||
[fontaine.fabrice@gmail.com: backport upstream commit]
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
---
|
||||
src/crun.c | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
diff --git a/src/crun.c b/src/crun.c
|
||||
index cbfe900..af0cc97 100644
|
||||
--- a/src/crun.c
|
||||
+++ b/src/crun.c
|
||||
@@ -23,7 +23,9 @@
|
||||
#include <string.h>
|
||||
#include <libgen.h>
|
||||
|
||||
+#ifdef HAVE_DLOPEN
|
||||
#include <dlfcn.h>
|
||||
+#endif
|
||||
|
||||
#include "crun.h"
|
||||
#include "libcrun/utils.h"
|
||||
--
|
||||
2.25.1
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Locally computed
|
||||
sha256 f669ecd3d1895dcaa8425eabb707c06eb3bdb5ae5201a50a423c3cace36c4a05 crun-1.7.2.tar.gz
|
||||
sha256 5b8b5adb1dff7af768b69d2b0b4f2cd785ec931e7aa10138aa29812c46ee09ff crun-1.8.4.tar.gz
|
||||
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
|
||||
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING.libcrun
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
CRUN_VERSION = 1.7.2
|
||||
CRUN_VERSION = 1.8.4
|
||||
CRUN_SITE = https://github.com/containers/crun/releases/download/$(CRUN_VERSION)
|
||||
CRUN_DEPENDENCIES = host-pkgconf yajl
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user