diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-07-01 22:12:07 +0200 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2024-07-01 21:56:58 -0400 |
commit | 5d344166d4345e4466454cb59457f2d51a001aed (patch) | |
tree | 0d44dd2849dab0cf83c7dcb052456febb5900645 | |
parent | app-emulation/wine-staging: remove unused patch (diff) | |
download | gentoo-5d344166d4345e4466454cb59457f2d51a001aed.tar.gz gentoo-5d344166d4345e4466454cb59457f2d51a001aed.tar.bz2 gentoo-5d344166d4345e4466454cb59457f2d51a001aed.zip |
app-emulation/wine-vanilla: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
-rw-r--r-- | app-emulation/wine-vanilla/files/wine-vanilla-9.8-musl-ioctls-header.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/app-emulation/wine-vanilla/files/wine-vanilla-9.8-musl-ioctls-header.patch b/app-emulation/wine-vanilla/files/wine-vanilla-9.8-musl-ioctls-header.patch deleted file mode 100644 index 7aa1a4c00587..000000000000 --- a/app-emulation/wine-vanilla/files/wine-vanilla-9.8-musl-ioctls-header.patch +++ /dev/null @@ -1,30 +0,0 @@ -https://bugs.gentoo.org/931341 -https://gitlab.winehq.org/wine/wine/-/commit/24ca848c568d5a2786abd26f2e7314b2e3f509f3 -From: Fotios Valasiadis <fvalasiad@gmail.com> -Date: Sun, 5 May 2024 03:34:57 +0300 -Subject: [PATCH] ntdll/unix: Fix building on musl by explicitly including - asm/ioctls.h. - -After commit 898ab8dab19d498c17859f39a55e317ee7e367a5 wine would no longer -build on musl. - -Issue is that apparently TCSETS2 isn't defined when including sys/ioctl.h. - -A little digging shows that glibc goes ahead and includes asm/ioctls.h in -sys/ioctl.h, providing said macro. Musl on the other hand doesn't and relies -on bits/ioctl.h, which lacks said macro. - -Signed-off-by: Fotios Valasiadis <fvalasiad@gmail.com> ---- a/dlls/ntdll/unix/serial.c -+++ b/dlls/ntdll/unix/serial.c -@@ -33,6 +33,7 @@ - #include <stdio.h> - #ifdef HAVE_ASM_TERMBITS_H - # include <asm/termbits.h> -+# include <asm/ioctls.h> - #else - # include <termios.h> - #endif --- -GitLab - |