diff options
author | Simon Dawson <spdawson@gmail.com> | 2012-07-30 08:22:20 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-07-30 19:12:47 +0200 |
commit | 522772bd337ecadd00427c3738c4ebb100d91866 (patch) | |
tree | b6f9bf52a71d4c1a2e72896d6ff4335fb62b88e0 | |
parent | 4233993b0669ceace5f6e4670c563577035d791f (diff) |
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 <spdawson@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/gpsd/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/gpsd/Config.in b/package/gpsd/Config.in index 8643492fb..a11c553a4 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" |