From e5b493a36673758b02dcb4124b002f4e029053a2 Mon Sep 17 00:00:00 2001 From: "Gary E. Miller" Date: Wed, 26 Dec 2018 17:47:17 -0800 Subject: POSIX_C_SOURCE: Not just a linux define. 200112L is a minimum. Don't force _POSIX_C_SOURCE 200112L, just make it a minimum. --- libgpsd_core.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'libgpsd_core.c') diff --git a/libgpsd_core.c b/libgpsd_core.c index 15fa8070..cc7d5fbd 100644 --- a/libgpsd_core.c +++ b/libgpsd_core.c @@ -14,9 +14,12 @@ /* FreeBSD chokes on this */ /* getsid() needs _XOPEN_SOURCE, 500 means X/Open 1995 */ #define _XOPEN_SOURCE 500 +#endif /* __linux__ */ + +#if !defined(_POSIX_C_SOURCE) || _POSIX_C_SOURCE < 200112L /* isfinite() and pselect() needs _POSIX_C_SOURCE >= 200112L */ #define _POSIX_C_SOURCE 200112L -#endif /* __linux__ */ +#endif /* strlcpy() needs _DARWIN_C_SOURCE */ #define _DARWIN_C_SOURCE -- cgit v1.2.1