Просмотр исходного кода

libnl-tiny: include <sys/socket.h>

Currently some libnl headers require application code to include
dependencies on its own. E.g. a simple include of <linux/netlink.h>
will trigger an error:
/usr/include/libnl-tiny/linux/netlink.h:32:2: error: unknown type name 'sa_family_t'

Similarly including <netlink/handlers.h> causes:
/usr/include/libnl-tiny/netlink/handlers.h:133:19: warning: 'struct ucred' declared inside parameter list [enabled by default]

Fix it by including <sys/socket.h> where needed in libnl headers.

Signed-off-by: Rafał Miłecki <[email protected]>

SVN-Revision: 47456
Felix Fietkau 10 лет назад
Родитель
Сommit
1e06647d37

+ 1 - 0
package/libs/libnl-tiny/src/include/linux/netlink.h

@@ -3,6 +3,7 @@
 
 #include <linux/socket.h> /* for sa_family_t */
 #include <linux/types.h>
+#include <sys/socket.h> /* for sa_family_t */
 
 #define NETLINK_ROUTE		0	/* Routing/device hook				*/
 #define NETLINK_UNUSED		1	/* Unused number				*/

+ 1 - 0
package/libs/libnl-tiny/src/include/netlink/handlers.h

@@ -14,6 +14,7 @@
 
 #include <stdio.h>
 #include <stdint.h>
+#include <sys/socket.h>
 #include <sys/types.h>
 #include <netlink/netlink-compat.h>
 #include <netlink/netlink-kernel.h>