Thanks for passing this along. The source code has been updated as suggested and this will be in version 1.3.
John -----Original Message----- From: Iain R. Learmonth [mailto:[email protected]] Sent: Monday, November 02, 2015 9:27 AM To: [email protected]; [email protected] Subject: [[email protected]: Bug#803686: direwolf: FTBFS with libgps22] Control: forwarded -1 [email protected] Hi John, Please see the following bug report below recieved in the Debian Bug Tracker. We have applied this patch in the latest upload to the Debian archives. Please incorporate it, or something similar, in your next release. Thanks, Iain. ----- Forwarded message from Bas Couwenberg <[email protected]> ----- Date: Sun, 01 Nov 2015 20:02:36 +0100 From: Bas Couwenberg <[email protected]> To: Debian Bug Tracking System <[email protected]> Subject: Bug#803686: direwolf: FTBFS with libgps22 X-Mailer: reportbug 6.6.5 Source: direwolf Version: 1.2-1 Severity: important Tags: patch upstream Dear Maintainer, direwolf (1.2-1) FTBFS with libgps22 as part of the gpsd transition (#803605): dwgps.c:64:2: error: #error libgps API version might be incompatible. #error libgps API version might be incompatible. ^ <builtin>: recipe for target 'dwgps.o' failed dwgps.c claims to only support GPSD_API_MAJOR_VERSION 5, but also builds successfully with GPSD_API_MAJOR_VERSION 6 provided by libgps22 when the attached patch is applied. Kind Regards, Bas Description: Enable building with libgps22 (GPSD_API_MAJOR_VERSION 6) Author: Bas Couwenberg <[email protected]> --- a/dwgps.c +++ b/dwgps.c @@ -60,7 +60,7 @@ #if ENABLE_GPS #include <gps.h> -#if GPSD_API_MAJOR_VERSION != 5 +#if GPSD_API_MAJOR_VERSION < 5 || GPSD_API_MAJOR_VERSION > 6 #error libgps API version might be incompatible. #endif ----- End forwarded message ----- --

