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:i...@fsfe.org] Sent: Monday, November 02, 2015 9:27 AM To: wb2...@comcast.net; 803...@bugs.debian.org Subject: [sebas...@xs4all.nl: Bug#803686: direwolf: FTBFS with libgps22] Control: forwarded -1 wb2...@comcast.net 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 <sebas...@xs4all.nl> ----- Date: Sun, 01 Nov 2015 20:02:36 +0100 From: Bas Couwenberg <sebas...@xs4all.nl> To: Debian Bug Tracking System <sub...@bugs.debian.org> 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 <sebas...@debian.org> --- 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 ----- --