Skip to content

Commit b2548ec

Browse files
committed
Issue 52. Failed to compile with gcc 6.1.
1 parent 6a3b1fa commit b2548ec

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

dwgpsd.c

+9-6
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
#endif
5252

5353
#if ENABLE_GPSD
54+
5455
#include <gps.h>
5556

5657
// Debian bug report: direwolf (1.2-1) FTBFS with libgps22 as part of the gpsd transition (#803605):
@@ -60,7 +61,13 @@
6061
#error libgps API version might be incompatible.
6162
#endif
6263

63-
#endif
64+
/*
65+
* Information for interface to gpsd daemon.
66+
*/
67+
68+
static struct gps_data_t gpsdata;
69+
70+
#endif /* ENABLE_GPSD */
6471

6572

6673
#include "textcolor.h"
@@ -75,11 +82,7 @@ static int s_debug = 0; /* Enable debug output. */
7582

7683
static void * read_gpsd_thread (void *arg);
7784

78-
/*
79-
* Information for interface to gpsd daemon.
80-
*/
8185

82-
static struct gps_data_t gpsdata;
8386

8487

8588
/*-------------------------------------------------------------------
@@ -138,7 +141,7 @@ static struct gps_data_t gpsdata;
138141
*
139142
* Update: January 2016.
140143
*
141-
* I'm told that it might work in Raspian, Jessie version.
144+
* I'm told that the shared memory interface might work in Raspian, Jessie version.
142145
* Haven't tried it yet.
143146
*/
144147

0 commit comments

Comments
 (0)