summaryrefslogtreecommitdiff
path: root/drivers.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2005-07-06 22:57:55 +0000
committerEric S. Raymond <esr@thyrsus.com>2005-07-06 22:57:55 +0000
commit8615b013c1a982f4866cb6c410950b6170b8a1c8 (patch)
tree7a2f686c10ab7858c013ea01b6337436eb196c59 /drivers.c
parenta5e7017c69818db9dc82536b9e90cf8fd4da3a35 (diff)
downloadgpsd-8615b013c1a982f4866cb6c410950b6170b8a1c8.tar.gz
Make sure the Evermore driver gets included in the strategy array.
Diffstat (limited to 'drivers.c')
-rw-r--r--drivers.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers.c b/drivers.c
index fd0f513d..4861c47b 100644
--- a/drivers.c
+++ b/drivers.c
@@ -263,7 +263,7 @@ static struct gps_type_t earthmate = {
/*@ -redef @*/
#endif /* EARTHMATE_ENABLE */
-extern struct gps_type_t garmin_binary, sirf_binary, tsip_binary;
+extern struct gps_type_t garmin_binary, sirf_binary, tsip_binary, evermore_binary;
/*@ -nullassign @*/
/* the point of this rigamarole is to not have to export a table size */
@@ -291,6 +291,9 @@ static struct gps_type_t *gpsd_driver_array[] = {
#ifdef TSIP_ENABLE
&tsip_binary,
#endif /* TSIP_ENABLE */
+#ifdef EVERMORE_ENABLE
+ &evermore_binary,
+#endif /* EVERMORE_ENABLE */
NULL,
};
/*@ +nullassign @*/