From 10e8e2bbe744dba44bf10510ff1c5aafcfaf3797 Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Sat, 8 Mar 2025 09:29:33 +0100 Subject: [PATCH] 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 --- net/chrony/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/chrony/Makefile b/net/chrony/Makefile index b285efe96b..ab6262e879 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