summaryrefslogtreecommitdiff
path: root/libgpsd_core.c
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2016-08-16 12:58:25 -0700
committerGary E. Miller <gem@rellim.com>2016-08-16 12:58:25 -0700
commit0868e9c92ca3a26e2b64cb13ee3bcdb8e39da979 (patch)
tree69083cab98972e6642259209bbcf03789c24c126 /libgpsd_core.c
parent8bf402ded19608d4786d1f22b073f12d0257e7a1 (diff)
downloadgpsd-0868e9c92ca3a26e2b64cb13ee3bcdb8e39da979.tar.gz
If you specify XOPEN version, you must specify POSIX version.
This fixes 32-bit Gentoo on RasPi. All regression tests pass.
Diffstat (limited to 'libgpsd_core.c')
-rw-r--r--libgpsd_core.c2
1 files changed, 2 insertions, 0 deletions
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 <time.h>
#include <stdio.h>