X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=cirros-testvm%2Fsrc-cirros%2Fbuildroot-2015.05%2Fpackage%2Fgpsd%2F0003-Complete-wrapping-of-ntpshm_latch-function-in-ifdef-.patch;fp=cirros-testvm%2Fsrc-cirros%2Fbuildroot-2015.05%2Fpackage%2Fgpsd%2F0003-Complete-wrapping-of-ntpshm_latch-function-in-ifdef-.patch;h=2d2169099e42048b0948e38ea8bbce48a3b19ecd;hb=b0a0f15dfaa205161a7fcb20cf1b8cd4948c2ef3;hp=0000000000000000000000000000000000000000;hpb=c6ac3cd55ee2da956195eee393b0882105dfad4e;p=packages%2Ftrusty%2Fcirros-testvm.git diff --git a/cirros-testvm/src-cirros/buildroot-2015.05/package/gpsd/0003-Complete-wrapping-of-ntpshm_latch-function-in-ifdef-.patch b/cirros-testvm/src-cirros/buildroot-2015.05/package/gpsd/0003-Complete-wrapping-of-ntpshm_latch-function-in-ifdef-.patch new file mode 100644 index 0000000..2d21690 --- /dev/null +++ b/cirros-testvm/src-cirros/buildroot-2015.05/package/gpsd/0003-Complete-wrapping-of-ntpshm_latch-function-in-ifdef-.patch @@ -0,0 +1,43 @@ +From 519314d488624885a73f6204e3113aab850a36a0 Mon Sep 17 00:00:00 2001 +From: Simon Dawson +Date: Wed, 3 Sep 2014 18:39:22 +0100 +Subject: [PATCH] Complete wrapping of ntpshm_latch function in #ifdef + NTPSHM_ENABLE +To: gpsd-dev@nongnu.org + +Currently, the build fails as follows + +gpsmon.o: In function `gpsmon_hook': +gpsmon.c:(.text+0x8b0): undefined reference to `ntpshm_latch' +collect2: error: ld returned 1 exit status +scons: *** [gpsmon] Error 1 + +Signed-off-by: Simon Dawson +--- +diff -Nurp a/gpsd.h-tail b/gpsd.h-tail +--- a/gpsd.h-tail 2014-08-22 21:35:56.000000000 +0100 ++++ b/gpsd.h-tail 2014-09-03 18:52:04.048627518 +0100 +@@ -842,7 +842,9 @@ extern unsigned int ais_binary_encode(st + extern void ntpshm_context_init(struct gps_context_t *); + extern void ntpshm_session_init(struct gps_device_t *); + extern int ntpshm_put(struct gps_device_t *, int, struct timedrift_t *); ++#ifdef NTPSHM_ENABLE + extern void ntpshm_latch(struct gps_device_t *device, /*@out@*/struct timedrift_t *td); ++#endif /* NTPSHM_ENABLE */ + extern void ntpshm_link_deactivate(struct gps_device_t *); + extern void ntpshm_link_activate(struct gps_device_t *); + +diff -Nurp a/gpsmon.c b/gpsmon.c +--- a/gpsmon.c 2014-08-22 21:06:58.000000000 +0100 ++++ b/gpsmon.c 2014-09-03 18:52:23.172628059 +0100 +@@ -778,8 +778,10 @@ static void gpsmon_hook(struct gps_devic + + report_unlock(); + ++#ifdef NTPSHM_ENABLE + /* Update the last fix time seen for PPS. FIXME: do this here? */ + ntpshm_latch(device, &td); ++#endif /* NTPSHM_ENABLE */ + } + /*@+observertrans +nullpass +globstate +compdef +uniondef@*/ +