diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2017-06-19 15:33:25 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-06-19 22:11:10 +0200 |
commit | 79ee9b7e692824886bc19b21f55ac25e36e238f1 (patch) | |
tree | 5d993ef97edc704769f32ec74a1a450d6caea8c7 | |
parent | a97b1e03fe779a67b4ca14f9e08fd4a316e81be5 (diff) | |
download | buildroot-79ee9b7e692824886bc19b21f55ac25e36e238f1.tar.gz buildroot-79ee9b7e692824886bc19b21f55ac25e36e238f1.zip |
ntp: enable/disable sntp support depending on BR2_PACKAGE_NTP_SNTP
We already have an option for selecting sntp support in ntp that can be
chosen from the menuconfig, and ntp's configure script has a --with-sntp
option (with its --without counterpart) which can be used for disabling
sntp support in ntp. However, we are not using it. This patch will make
use of it.
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/ntp/ntp.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/package/ntp/ntp.mk b/package/ntp/ntp.mk index 26f58628aa..c70d6e6351 100644 --- a/package/ntp/ntp.mk +++ b/package/ntp/ntp.mk @@ -65,6 +65,12 @@ else NTP_CONF_OPTS += --disable-SHM endif +ifeq ($(BR2_PACKAGE_NTP_SNTP),y) +NTP_CONF_OPTS += --with-sntp +else +NTP_CONF_OPTS += --without-sntp +endif + NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_NTP_KEYGEN) += util/ntp-keygen NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_NTP_WAIT) += scripts/ntp-wait/ntp-wait NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_NTPDATE) += ntpdate/ntpdate |