From 14a971ab6c47324dd1422b1787c393702b2d475c Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias Date: Thu, 3 Feb 2011 17:45:57 -0300 Subject: ntp: add ntpdate option Closes #2935 Add ntpdate option and make ntpd optional. Based on incomplete patch by Frederik Pasch Also enable crypto when openssl is enabled. Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- package/ntp/ntp.mk | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'package/ntp/ntp.mk') diff --git a/package/ntp/ntp.mk b/package/ntp/ntp.mk index 7e09b5edd..bca5d6e57 100644 --- a/package/ntp/ntp.mk +++ b/package/ntp/ntp.mk @@ -15,25 +15,32 @@ endif NTP_CONF_OPT = --with-shared \ --program-transform-name=s,,, \ - --without-crypto \ --disable-tickadj \ --without-ntpsnmpd +ifeq ($(BR2_PACKAGE_OPENSSL),y) +NTP_CONF_OPT += --with-crypto +NTP_DEPENDENCIES += openssl +else +NTP_CONF_OPT += --without-crypto +endif + define NTP_PATCH_FIXUPS $(SED) "s,^#if.*__GLIBC__.*_BSD_SOURCE.*$$,#if 0," $(@D)/ntpd/refclock_pcf.c $(SED) '/[[:space:](]rindex[[:space:]]*(/s/[[:space:]]*rindex[[:space:]]*(/ strrchr(/g' $(@D)/ntpd/*.c endef -NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_SNTP) += sntp/sntp NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_NTP_KEYGEN) += util/ntp-keygen NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_NTP_WAIT) += scripts/ntp-wait +NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_NTPDATE) += ntpdate/ntpdate NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_NTPDC) += ntpdc/ntpdc NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_NTPQ) += ntpq/ntpq NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_NTPTRACE) += scripts/ntptrace +NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_SNTP) += sntp/sntp NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_TICKADJ) += util/tickadj define NTP_INSTALL_TARGET_CMDS - install -m 755 $(@D)/ntpd/ntpd $(TARGET_DIR)/usr/sbin/ntpd + $(if $(BR2_PACKAGE_NTP_NTPD), install -m 755 $(@D)/ntpd/ntpd $(TARGET_DIR)/usr/sbin/ntpd) test -z "$(NTP_INSTALL_FILES_y)" || install -m 755 $(addprefix $(@D)/,$(NTP_INSTALL_FILES_y)) $(TARGET_DIR)/usr/bin/ install -m 755 package/ntp/ntp.sysvinit $(TARGET_DIR)/etc/init.d/S49ntp @if [ ! -f $(TARGET_DIR)/etc/default/ntpd ]; then \ -- cgit v1.2.3