diff options
Diffstat (limited to 'community/ubridge/musl-fixes.patch')
-rw-r--r-- | community/ubridge/musl-fixes.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/ubridge/musl-fixes.patch b/community/ubridge/musl-fixes.patch new file mode 100644 index 0000000000..4264080510 --- /dev/null +++ b/community/ubridge/musl-fixes.patch @@ -0,0 +1,24 @@ +diff --git a/netlink/nl.c b/netlink/nl.c +index 7a11506..5e7df80 100644 +--- a/netlink/nl.c ++++ b/netlink/nl.c +@@ -29,6 +29,7 @@ + #include <errno.h> + #include <stdlib.h> + #include <linux/netlink.h> ++#include <sys/types.h> + #include <linux/rtnetlink.h> + #include "nl.h" + +diff --git a/netlink/nl.h b/netlink/nl.h +index 34aeb36..d25a65d 100644 +--- a/netlink/nl.h ++++ b/netlink/nl.h +@@ -26,6 +26,7 @@ + /* + * Use this as a good size to allocate generic netlink messages + */ ++#include <sys/types.h> + #ifndef PAGE_SIZE + #define PAGE_SIZE 4096 + #endif |