From 0868e9c92ca3a26e2b64cb13ee3bcdb8e39da979 Mon Sep 17 00:00:00 2001 From: "Gary E. Miller" Date: Tue, 16 Aug 2016 12:58:25 -0700 Subject: If you specify XOPEN version, you must specify POSIX version. This fixes 32-bit Gentoo on RasPi. All regression tests pass. --- libgpsd_core.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libgpsd_core.c') diff --git a/libgpsd_core.c b/libgpsd_core.c index 90743d72..41405ba5 100644 --- a/libgpsd_core.c +++ b/libgpsd_core.c @@ -12,6 +12,8 @@ /* getsid() needs _XOPEN_SOURCE, 500 means X/Open 1995 */ #define _XOPEN_SOURCE 500 +/* isfinite() and pselect() needs _POSIX_C_SOURCE >= 200112L */ +#define _POSIX_C_SOURCE 200112L #include #include -- cgit v1.2.1