From fabd8e557a7483dad7a4db6e871525900382e5f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Wed, 26 May 2021 01:21:25 -0300 Subject: [PATCH] qemu: remove outdated musl patch. They stopped using these constants with [1]. [1] https://github.com/qemu/qemu/commit/b1d2e476e94cb215d9e19fef1049d413b414ffc2 --- .../patches/musl-F_SHLCK-and-F_EXLCK.patch | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 srcpkgs/qemu/patches/musl-F_SHLCK-and-F_EXLCK.patch diff --git a/srcpkgs/qemu/patches/musl-F_SHLCK-and-F_EXLCK.patch b/srcpkgs/qemu/patches/musl-F_SHLCK-and-F_EXLCK.patch deleted file mode 100644 index 567c75bd121..00000000000 --- a/srcpkgs/qemu/patches/musl-F_SHLCK-and-F_EXLCK.patch +++ /dev/null @@ -1,19 +0,0 @@ -This patch was not upstreamed to qemu as those should probably be -defined in musl libc. - ---- linux-user/syscall.c.orig 2016-12-21 15:42:53.453155713 +0100 -+++ linux-user/syscall.c 2016-12-21 15:43:34.995638423 +0100 -@@ -114,6 +114,13 @@ - - #include "qemu.h" - -+#ifndef F_SHLCK -+#define F_SHLCK 8 -+#endif -+#ifndef F_EXLCK -+#define F_EXLCK 4 -+#endif -+ - #ifndef CLONE_IO - #define CLONE_IO 0x80000000 /* Clone io context */ - #endif