From 647b13fe375df42fa562cee864cb22d1f131dcc4 Mon Sep 17 00:00:00 2001 From: Markham Date: Mon, 2 Oct 2023 14:25:40 +0200 Subject: [PATCH] ntp: fix for newer gcc --- make/applications.mk | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/make/applications.mk b/make/applications.mk index 9a24f6b..0fe799a 100755 --- a/make/applications.mk +++ b/make/applications.mk @@ -213,8 +213,17 @@ $(D)/ntp: $(D)/openssl $(ARCHIVE)/ntp-$(NTP_VER).tar.gz | $(TARGETPREFIX) --host=$(TARGET) \ --target=$(TARGET) \ --prefix= \ + --disable-ATOM \ + --disable-SHM \ + --disable-tickadj \ --disable-debugging \ - --with-yielding-select=yes; \ + --disable-linuxcaps \ + --with-shared \ + --with-crypto --enable-openssl-random \ + --with-yielding-select=yes \ + --without-sntp \ + --without-ntpsnmpd \ + --without-lineeditlibs; \ $(MAKE) install DESTDIR=$(BUILD_TMP)/ntp-$(NTP_VER)/build_dir cp -a $(BUILD_TMP)/ntp-$(NTP_VER)/build_dir/bin/ntpdate $(TARGETPREFIX)/sbin/ $(TARGET)-strip $(TARGETPREFIX)/sbin/ntpdate -- 2.39.5