summaryrefslogtreecommitdiff
path: root/gpspipe.c
diff options
context:
space:
mode:
authorMatt <ukyg9e5r6k7gubiekd6@yahoo.com>2015-01-23 19:28:36 +1100
committerEric S. Raymond <esr@thyrsus.com>2015-01-23 04:52:06 -0500
commit822cf84c9f93398befe3c19137a46207383254b6 (patch)
tree2ba3494e4a98e87e4c975c392377f1d0643778bf /gpspipe.c
parent8ad7639727312ec64d989bb911babe8ae01f469d (diff)
downloadgpsd-822cf84c9f93398befe3c19137a46207383254b6.tar.gz
Guard includes of termios.h with #ifdef HAVE_TERMIOS_H
Guard includes of termios.h with #ifdef HAVE_TERMIOS_H. Test for termios.h in scons, and define/undefine HAVE_TERMIOS_H accordingly. Fixes the below error seen on cygwin, which lacks termios.h: In file included from gpsutils.c:22:0: gpsd.h:349:21: fatal error: termios.h: No such file or directory #include <termios.h> ^
Diffstat (limited to 'gpspipe.c')
-rw-r--r--gpspipe.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gpspipe.c b/gpspipe.c
index 7e6a37b1..64cc39e1 100644
--- a/gpspipe.c
+++ b/gpspipe.c
@@ -23,6 +23,8 @@
*
*/
+#include "gpsd_config.h"
+
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
@@ -30,7 +32,9 @@
#include <string.h>
#include <strings.h>
#include <fcntl.h>
+#ifdef HAVE_TERMIOS_H
#include <termios.h>
+#endif /* HAVE_TERMIOS_H */
#include <time.h>
#include <sys/time.h>
#include <sys/types.h>