From: Simon Dawson Date: Mon, 30 Jul 2012 07:22:20 +0000 (+0100) Subject: gpsd: PPS feature depends on NTPSHM feature X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=522772bd337ecadd00427c3738c4ebb100d91866;p=buildroot.git gpsd: PPS feature depends on NTPSHM feature The PPS feature of gpsd depends on the NTP shared memory time hinting feature. This patch caused the NTPSHM feature to be enabled whenever the PPS feature is enabled. This should fix build failures such as the following. http://autobuild.buildroot.net/results/e58a9a9f884acb6834a8afe4a8a3d056dc509359/build-end.log Signed-off-by: Simon Dawson Signed-off-by: Thomas Petazzoni --- diff --git a/package/gpsd/Config.in b/package/gpsd/Config.in index 8643492fb8..a11c553a40 100644 --- a/package/gpsd/Config.in +++ b/package/gpsd/Config.in @@ -38,6 +38,7 @@ config BR2_PACKAGE_GPSD_NTP_SHM config BR2_PACKAGE_GPSD_PPS bool "PPS time syncing support" + select BR2_PACKAGE_GPSD_NTP_SHM config BR2_PACKAGE_GPSD_USER bool "GPSD privilege revocation user"