* [PATCH net] uapi glibc compat: fix compilation when !__USE_MISC in glibc
@ 2016-05-19 15:26 Nicolas Dichtel
2016-05-21 18:52 ` Mikko Rapeli
0 siblings, 1 reply; 2+ messages in thread
From: Nicolas Dichtel @ 2016-05-19 15:26 UTC (permalink / raw)
To: davem
Cc: netdev, Nicolas Dichtel, Jan Engelhardt, Josh Boyer,
Stephen Hemminger, Waldemar Brodkorb, Gabriel Laskar,
Mikko Rapeli
These structures are defined only if __USE_MISC is set in glibc net/if.h
headers, ie when _BSD_SOURCE or _SVID_SOURCE are defined.
CC: Jan Engelhardt <jengelh@inai.de>
CC: Josh Boyer <jwboyer@fedoraproject.org>
CC: Stephen Hemminger <shemming@brocade.com>
CC: Waldemar Brodkorb <mail@waldemar-brodkorb.de>
CC: Gabriel Laskar <gabriel@lse.epita.fr>
CC: Mikko Rapeli <mikko.rapeli@iki.fi>
Fixes: 4a91cb61bb99 ("uapi glibc compat: fix compile errors when glibc net/if.h included before linux/if.h")
Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
---
include/uapi/linux/libc-compat.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/uapi/linux/libc-compat.h b/include/uapi/linux/libc-compat.h
index d5e38c73377c..e4f048ee7043 100644
--- a/include/uapi/linux/libc-compat.h
+++ b/include/uapi/linux/libc-compat.h
@@ -52,7 +52,7 @@
#if defined(__GLIBC__)
/* Coordinate with glibc net/if.h header. */
-#if defined(_NET_IF_H)
+#if defined(_NET_IF_H) && defined(__USE_MISC)
/* GLIBC headers included first so don't define anything
* that would already be defined. */
--
2.8.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH net] uapi glibc compat: fix compilation when !__USE_MISC in glibc
2016-05-19 15:26 [PATCH net] uapi glibc compat: fix compilation when !__USE_MISC in glibc Nicolas Dichtel
@ 2016-05-21 18:52 ` Mikko Rapeli
0 siblings, 0 replies; 2+ messages in thread
From: Mikko Rapeli @ 2016-05-21 18:52 UTC (permalink / raw)
To: Nicolas Dichtel
Cc: davem, netdev, Jan Engelhardt, Josh Boyer, Stephen Hemminger,
Waldemar Brodkorb, Gabriel Laskar
On Thu, May 19, 2016 at 05:26:29PM +0200, Nicolas Dichtel wrote:
> These structures are defined only if __USE_MISC is set in glibc net/if.h
> headers, ie when _BSD_SOURCE or _SVID_SOURCE are defined.
Also, reading /usr/include/features.h from Debian glibc 2.22-4:
...
The `-ansi' switch to the GNU C compiler, and standards conformance
options such as `-std=c99', define __STRICT_ANSI__. If none of
these are defined, or if _DEFAULT_SOURCE is defined, the default is
to have _POSIX_SOURCE set to one and _POSIX_C_SOURCE set to
200809L, as well as enabling miscellaneous functions from BSD and
SVID. If more than one of these are defined, they accumulate. For
example __STRICT_ANSI__, _POSIX_SOURCE and _POSIX_C_SOURCE together
give you ISO C, 1003.1, and 1003.2, but nothing else.
...
/* _BSD_SOURCE and _SVID_SOURCE are deprecated aliases for
_DEFAULT_SOURCE.
...
In the compile test I go with the defaults. I guess I should test all
of these feature variants and in the future check deeper into the glibc
ifdefs.
> CC: Jan Engelhardt <jengelh@inai.de>
> CC: Josh Boyer <jwboyer@fedoraproject.org>
> CC: Stephen Hemminger <shemming@brocade.com>
> CC: Waldemar Brodkorb <mail@waldemar-brodkorb.de>
> CC: Gabriel Laskar <gabriel@lse.epita.fr>
> CC: Mikko Rapeli <mikko.rapeli@iki.fi>
> Fixes: 4a91cb61bb99 ("uapi glibc compat: fix compile errors when glibc net/if.h included before linux/if.h")
> Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: Mikko Rapeli <mikko.rapeli@iki.fi>
> ---
> include/uapi/linux/libc-compat.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/uapi/linux/libc-compat.h b/include/uapi/linux/libc-compat.h
> index d5e38c73377c..e4f048ee7043 100644
> --- a/include/uapi/linux/libc-compat.h
> +++ b/include/uapi/linux/libc-compat.h
> @@ -52,7 +52,7 @@
> #if defined(__GLIBC__)
>
> /* Coordinate with glibc net/if.h header. */
> -#if defined(_NET_IF_H)
> +#if defined(_NET_IF_H) && defined(__USE_MISC)
>
> /* GLIBC headers included first so don't define anything
> * that would already be defined. */
> --
> 2.8.1
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-05-21 18:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-19 15:26 [PATCH net] uapi glibc compat: fix compilation when !__USE_MISC in glibc Nicolas Dichtel
2016-05-21 18:52 ` Mikko Rapeli
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).