1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 18:25:41 +03:00
aports/community/vde2/musl-build-fix.patch
2022-10-14 16:15:18 +00:00

13 lines
282 B
Diff

--- a/src/vdetaplib/libvdetap.c
+++ b/src/vdetaplib/libvdetap.c
@@ -121,6 +121,10 @@
return native_open(path, flags, data);
}
+/* musl apparently defines open64 as a macro */
+#ifdef open64
+#undef open64
+#endif
int open64(const char *path, int flags, ...)
{
va_list ap;