24 lines
665 B
Diff
24 lines
665 B
Diff
musl defines id_t as unsigned but doesn't use the _ID_T to detect its
|
|
definition. This causes the type to be redefined as an int by fakeroot
|
|
which causes a compilation error.
|
|
|
|
--
|
|
Taken from Alpine Linux ports.
|
|
|
|
--- a/libfakeroot.c
|
|
+++ b/libfakeroot.c
|
|
@@ -133,13 +133,6 @@
|
|
#define INT_SEND_STAT(a,b) SEND_STAT(a,b,_STAT_VER)
|
|
#define INT_SEND_GET_XATTR(a,b) SEND_GET_XATTR(a,b,_STAT_VER)
|
|
#define INT_SEND_GET_STAT(a,b) SEND_GET_STAT(a,b)
|
|
-
|
|
-/* 10.10 uses id_t in getpriority/setpriority calls, so pretend
|
|
- id_t is used everywhere, just happens to be int on some OSes */
|
|
-#ifndef _ID_T
|
|
-#define _ID_T
|
|
-typedef int id_t;
|
|
-#endif
|
|
#endif
|
|
|
|
#include <sys/types.h>
|