mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-26 05:56:14 +01:00
gnetworkmonitornetlink.c: Fix compilation on RHEL 6.2
When trying to compile glib master on a RHEL 6.2 system, it fails with: make[4]: Entering directory `/home/teuf/gnome/src/glib/gio' CC libgio_2_0_la-gnetworkmonitornetlink.lo In file included from gnetworkmonitornetlink.c:25: /usr/include/linux/netlink.h:35: error: expected specifier-qualifier-list before 'sa_family_t' gnetworkmonitornetlink.c: In function 'g_network_monitor_netlink_initable_init': gnetworkmonitornetlink.c:99: error: 'struct sockaddr_nl' has no member named 'nl_family' gnetworkmonitornetlink.c💯 error: 'struct sockaddr_nl' has no member named 'nl_pid' gnetworkmonitornetlink.c💯 error: 'struct sockaddr_nl' has no member named 'nl_pad' gnetworkmonitornetlink.c:101: error: 'struct sockaddr_nl' has no member named 'nl_groups' make[4]: *** [libgio_2_0_la-gnetworkmonitornetlink.lo] Error 1 sa_family_t is defined in sys/socket.h, this commit makes sure this header is included before netlink.h This fixes bgo bug #666001
This commit is contained in:
parent
b79d1f8619
commit
f3dde2d405
@ -22,8 +22,6 @@
|
||||
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include <linux/netlink.h>
|
||||
#include <linux/rtnetlink.h>
|
||||
|
||||
#include "gnetworkmonitornetlink.h"
|
||||
#include "gcredentials.h"
|
||||
@ -36,6 +34,11 @@
|
||||
#include "gsocket.h"
|
||||
#include "gunixcredentialsmessage.h"
|
||||
|
||||
/* must come at the end to pick system includes from
|
||||
* gnetworkingprivate.h */
|
||||
#include <linux/netlink.h>
|
||||
#include <linux/rtnetlink.h>
|
||||
|
||||
static void g_network_monitor_netlink_iface_init (GNetworkMonitorInterface *iface);
|
||||
static void g_network_monitor_netlink_initable_iface_init (GInitableIface *iface);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user