ayaports/unmaintained/zvbi/0001-Attempt-to-fix-musl-build.patch
build@apk-groulx 7c2d413554 3.17 cleanup
2023-01-11 00:40:45 +00:00

28 lines
675 B
Diff

From 7ea56c0db14d4be2dbcf95a9156bde1f5852dec8 Mon Sep 17 00:00:00 2001
From: "build@apk-groulx" <build@apk-groulx.praxis>
Date: Sun, 6 Jun 2021 22:47:05 +0000
Subject: [PATCH] Attempt to fix musl build
---
src/chains.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/chains.c b/src/chains.c
index c54bfff..57b84d5 100644
--- a/src/chains.c
+++ b/src/chains.c
@@ -284,7 +284,11 @@ int open(const char *pathname, int flags, ...)
}
}
+#ifdef __GLIBC__i
int ioctl(int fd, ioctl_request_t request, ...)
+#else
+int ioctl(int fd, int request, ...)
+#endif
{
/*
* FreeBSD needs ioctl with varargs. However I have no idea how to "forward"
--
2.30.2