From ca6b86be44fc7ed618a7ab3bd021e208d38878b1 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Thu, 23 Oct 2014 18:47:04 -0500 Subject: Fix all tests for GNU/kFreeBSD It is necessary to check for both the kernel and c library because __FreeBSD_kernel is also defined on native FreeBSD [1]. [1] http://sourceforge.net/p/predef/wiki/OperatingSystems/ --- src/rc/runscript.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/rc/runscript.c') diff --git a/src/rc/runscript.c b/src/rc/runscript.c index 96aa683d..47ed23e2 100644 --- a/src/rc/runscript.c +++ b/src/rc/runscript.c @@ -51,7 +51,8 @@ #include #include -#if defined(__linux__) || defined(__FreeBSD_kernel__) +#if defined(__linux__) || (defined(__FreeBSD_kernel__) && \ + defined(__GLIBC__)) # include #elif defined(__NetBSD__) || defined(__OpenBSD__) # include -- cgit v1.2.3