aports/main/libnl/fix-includes.patch
Timo Teräs e21031c82b main/libnl: fix #include poll.h in public header
as public header changes, bump pkgrel too.
2013-09-30 17:17:31 +00:00

26 lines
558 B
Diff

--- libnl-1.1.orig/lib/netfilter/log.c
+++ libnl-1.1/lib/netfilter/log.c
@@ -18,6 +18,7 @@
* @{
*/
+#include <byteswap.h>
#include <sys/types.h>
#include <linux/netfilter/nfnetlink_log.h>
--- libnl-1.1.orig/include/netlink/netlink.h
+++ libnl-1.1/include/netlink/netlink.h
@@ -12,11 +12,11 @@
#ifndef NETLINK_NETLINK_H_
#define NETLINK_NETLINK_H_
+#include <poll.h>
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
-#include <sys/poll.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/time.h>