From: Miroslav Lichvar Date: Sat, 8 Mar 2025 08:29:33 +0000 (+0100) Subject: chrony: enable support for non-MD5 keys in nts variant X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=10e8e2bbe744dba44bf10510ff1c5aafcfaf3797;p=openwrt-packages.git chrony: enable support for non-MD5 keys in nts variant gnutls and nettle are already required for NTS. Enable their use for authentication with non-MD5 symmetric keys as the SECHASH feature printed by the configure script. Also drop the --enable,nts (typo) configure option. It's enabled by default. Signed-off-by: Miroslav Lichvar --- diff --git a/net/chrony/Makefile b/net/chrony/Makefile index b285efe96..ab6262e87 100644 --- a/net/chrony/Makefile +++ b/net/chrony/Makefile @@ -78,10 +78,10 @@ CONFIGURE_ARGS+= \ --sysconfdir=/etc/chrony \ --prefix=/usr \ --chronyrundir=/var/run/chrony \ - $(if $(findstring normal,$(BUILD_VARIANT)),--disable-nts,--enable,nts) \ + $(if $(findstring normal,$(BUILD_VARIANT)),--disable-nts) \ --disable-readline \ --disable-rtc \ - --disable-sechash \ + $(if $(findstring normal,$(BUILD_VARIANT)),--disable-sechash) \ --with-user=chrony CONFIGURE_VARS+=CPPFLAGS=-DNDEBUG