File tree 1 file changed +16
-1
lines changed
1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 57
57
// Debian bug report: direwolf (1.2-1) FTBFS with libgps22 as part of the gpsd transition (#803605):
58
58
// dwgps.c claims to only support GPSD_API_MAJOR_VERSION 5, but also builds successfully with
59
59
// GPSD_API_MAJOR_VERSION 6 provided by libgps22 when the attached patch is applied.
60
- #if GPSD_API_MAJOR_VERSION < 5 || GPSD_API_MAJOR_VERSION > 6
60
+
61
+ // Also compatible with API 7 with conditional compilation later.
62
+
63
+ #if GPSD_API_MAJOR_VERSION < 5 || GPSD_API_MAJOR_VERSION > 7
61
64
#error libgps API version might be incompatible.
62
65
#endif
63
66
@@ -257,7 +260,19 @@ static void * read_gpsd_thread (void *arg)
257
260
/* Fall thru to read which should get error and bail out. */
258
261
}
259
262
263
+ // https://github.com/wb2osz/direwolf/issues/196
264
+ // https://bugzilla.redhat.com/show_bug.cgi?id=1674812
265
+
266
+ // gps_read has two new parameters in API version 7.
267
+ // It looks like this could be used to obtain the JSON message from the daemon.
268
+ // Specify NULL, instead of message buffer space, if this is not desired.
269
+ // Why couldn't they add a new function instead of introducing incompatibility?
270
+
271
+ #if GPSD_API_MAJOR_VERSION >= 7
272
+ if (gps_read (& gpsdata , NULL , 0 ) == -1 ) {
273
+ #else
260
274
if (gps_read (& gpsdata ) == -1 ) {
275
+ #endif
261
276
text_color_set (DW_COLOR_ERROR );
262
277
263
278
dw_printf ("------------------------------------------\n" );
You can’t perform that action at this time.
0 commit comments