From 1e02046b68af74e84eafbfadb6f856195bbbdcb0 Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Wed, 10 Mar 2010 11:45:04 +0100 Subject: On TARGET_LINUX define _GNU_SOURCE if not defined This is to include peercred support on hosts where _GNU_SOURCE is not defined by default. This issue has been found on Gentoo with glibc-2.8. The solution was discussed on the IRC meeting March 4, 2010 in #openvpn-discussions. Signed-off-by: David Sommerseth Acked-by: James Yonan --- syshead.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'syshead.h') diff --git a/syshead.h b/syshead.h index 15445fc..1b8bfad 100644 --- a/syshead.h +++ b/syshead.h @@ -85,6 +85,10 @@ #endif #ifdef HAVE_SYS_SOCKET_H +# if defined(TARGET_LINUX) && !defined(_GNU_SOURCE) + /* needed for peercred support on glibc-2.8 */ +# define _GNU_SOURCE +# endif #include #endif -- cgit