|
@@ -4,16 +4,16 @@
|
|
|
#
|
|
|
################################################################################
|
|
|
|
|
|
-CHRONY_VERSION = 3.5.1
|
|
|
+CHRONY_VERSION = 4.0
|
|
|
CHRONY_SITE = http://download.tuxfamily.org/chrony
|
|
|
CHRONY_LICENSE = GPL-2.0
|
|
|
CHRONY_LICENSE_FILES = COPYING
|
|
|
+CHRONY_DEPENDENCIES = host-pkgconf
|
|
|
|
|
|
CHRONY_CONF_OPTS = \
|
|
|
--host-system=Linux \
|
|
|
--host-machine=$(BR2_ARCH) \
|
|
|
--prefix=/usr \
|
|
|
- --without-readline \
|
|
|
--without-tomcrypt \
|
|
|
$(if $(BR2_PACKAGE_CHRONY_DEBUG_LOGGING),--enable-debug,--disable-debug)
|
|
|
|
|
@@ -24,7 +24,7 @@ CHRONY_CONF_OPTS += --without-libcap
|
|
|
endif
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBNSS),y)
|
|
|
-CHRONY_DEPENDENCIES += host-pkgconf libnss
|
|
|
+CHRONY_DEPENDENCIES += libnss
|
|
|
else
|
|
|
CHRONY_CONF_OPTS += --without-nss
|
|
|
endif
|
|
@@ -48,6 +48,18 @@ ifeq ($(BR2_PACKAGE_PPS_TOOLS),y)
|
|
|
CHRONY_DEPENDENCIES += pps-tools
|
|
|
endif
|
|
|
|
|
|
+ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
|
|
+CHRONY_DEPENDENCIES += gnutls
|
|
|
+else
|
|
|
+CHRONY_CONF_OPTS += --without-gnutls
|
|
|
+endif
|
|
|
+
|
|
|
+ifeq ($(BR2_PACKAGE_NETTLE),y)
|
|
|
+CHRONY_DEPENDENCIES += nettle
|
|
|
+else
|
|
|
+CHRONY_CONF_OPTS += --without-nettle
|
|
|
+endif
|
|
|
+
|
|
|
define CHRONY_CONFIGURE_CMDS
|
|
|
cd $(@D) && $(TARGET_CONFIGURE_OPTS) ./configure $(CHRONY_CONF_OPTS)
|
|
|
endef
|