From: Jukka Rissanen Date: Wed, 26 Oct 2011 07:15:58 +0000 (+0300) Subject: core: Fix compilation in MeeGo X-Git-Tag: 0.78~122 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=62e46276c3529ec4fb7cb8fb372ce7be9e3dc21a;p=platform%2Fupstream%2Fconnman.git core: Fix compilation in MeeGo The _GNU_SOURCE needs to be defined so that O_CLOEXEC symbols can be found in system header files. The source does not compile without the patch in MeeGo 1.2 --- diff --git a/src/inet.c b/src/inet.c index d0a3edc..595f52d 100644 --- a/src/inet.c +++ b/src/inet.c @@ -25,6 +25,7 @@ #include #endif +#define _GNU_SOURCE #include #include #include @@ -1426,12 +1427,6 @@ static const struct in6_addr in6addr_all_nodes_mc = IN6ADDR_ALL_NODES_MC_INIT; static const struct in6_addr in6addr_all_routers_mc = IN6ADDR_ALL_ROUTERS_MC_INIT; -/* from netinet/in.h */ -struct in6_pktinfo { - struct in6_addr ipi6_addr; /* src/dst IPv6 address */ - unsigned int ipi6_ifindex; /* send/recv interface index */ -}; - static void rs_cleanup(struct rs_cb_data *data) { g_io_channel_shutdown(data->channel, TRUE, NULL); diff --git a/src/resolver.c b/src/resolver.c index 4cc87dd..68fa4f7 100644 --- a/src/resolver.c +++ b/src/resolver.c @@ -23,6 +23,7 @@ #include #endif +#define _GNU_SOURCE #include #include #include diff --git a/src/rfkill.c b/src/rfkill.c index 6ad8279..3fdca2f 100644 --- a/src/rfkill.c +++ b/src/rfkill.c @@ -23,6 +23,7 @@ #include #endif +#define _GNU_SOURCE #include #include #include diff --git a/src/timezone.c b/src/timezone.c index 5b17c00..d82502b 100644 --- a/src/timezone.c +++ b/src/timezone.c @@ -23,6 +23,7 @@ #include #endif +#define _GNU_SOURCE #include #include #include