mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
package/ntp: bump version to 4.2.8p17
Changelog: https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/NEWS Removed patch 0003, upstream updated autogen to 5.18.16, see Changelog. Removed patch 0004, fixed upstream: https://bugs.ntp.org/show_bug.cgi?id=3741 Use sha256 hash provided by upstream. Updated license hash due to upstream additions to the license text (https://bugs.ntp.org/show_bug.cgi?id=3725) which do not affect the license terms: copyright year updates, list of authors, etc. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
1b52f1e0b0
commit
61d2fd4008
@@ -1066,8 +1066,6 @@ package/norm/0003-Fix-mixed-tabs-spaces-in-protolib-wscript.patch Upstream
|
|||||||
package/nss-pam-ldapd/S45nslcd EmptyLastLine Indent Shellcheck Variables
|
package/nss-pam-ldapd/S45nslcd EmptyLastLine Indent Shellcheck Variables
|
||||||
package/ntp/0001-nano.patch Upstream
|
package/ntp/0001-nano.patch Upstream
|
||||||
package/ntp/0002-ntp-syscalls-fallback.patch Upstream
|
package/ntp/0002-ntp-syscalls-fallback.patch Upstream
|
||||||
package/ntp/0003-override-shell.patch Upstream
|
|
||||||
package/ntp/0004-libntp-Do-not-use-PTHREAD_STACK_MIN-on-glibc.patch Upstream
|
|
||||||
package/ntp/S49ntp.in Variables
|
package/ntp/S49ntp.in Variables
|
||||||
package/ntpsec/0001-wscript-remove-checks-for-bsd-string.h-fixes-host-co.patch Upstream
|
package/ntpsec/0001-wscript-remove-checks-for-bsd-string.h-fixes-host-co.patch Upstream
|
||||||
package/ntpsec/0002-wscript-fix-build-without-stack-protector.patch Upstream
|
package/ntpsec/0002-wscript-fix-build-without-stack-protector.patch Upstream
|
||||||
|
|||||||
@@ -1,20 +0,0 @@
|
|||||||
sntp/libopts/m4/libopts.m4: allow override shell with POSIX_SHELL
|
|
||||||
|
|
||||||
Pull in fix from upstream AutoGen [1] to accept POSIX_SHELL from the
|
|
||||||
environment during the configure step.
|
|
||||||
|
|
||||||
[1] http://git.savannah.gnu.org/cgit/autogen.git/commit/?id=db064b9a252f3ef3d8db25411ea0edb0ff8ea758
|
|
||||||
|
|
||||||
Signed-off-by: James Byrne <james.byrne@origamienergy.com>
|
|
||||||
|
|
||||||
diff --git a/sntp/libopts/m4/libopts.m4 b/sntp/libopts/m4/libopts.m4
|
|
||||||
--- a/sntp/libopts/m4/libopts.m4
|
|
||||||
+++ b/sntp/libopts/m4/libopts.m4
|
|
||||||
@@ -114,6 +114,7 @@
|
|
||||||
AC_PROG_SED
|
|
||||||
[while :
|
|
||||||
do
|
|
||||||
+ test -x "$POSIX_SHELL" && break
|
|
||||||
POSIX_SHELL=`which bash`
|
|
||||||
test -x "$POSIX_SHELL" && break
|
|
||||||
POSIX_SHELL=`which dash`
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
From 082a504cfcc046c3d8adaae1164268bc94e5108a Mon Sep 17 00:00:00 2001
|
|
||||||
From: Khem Raj <raj.khem@gmail.com>
|
|
||||||
Date: Sat, 31 Jul 2021 10:51:41 -0700
|
|
||||||
Subject: [PATCH] libntp: Do not use PTHREAD_STACK_MIN on glibc
|
|
||||||
|
|
||||||
In glibc 2.34+ PTHREAD_STACK_MIN is not a compile-time constant which
|
|
||||||
could mean different stack sizes at runtime on different architectures
|
|
||||||
and it also causes compile failure. Default glibc thread stack size
|
|
||||||
or 64Kb set by ntp should be good in glibc these days.
|
|
||||||
|
|
||||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
||||||
[Copied from https://github.com/openembedded/meta-openembedded/blob/master/meta-networking/recipes-support/ntp/ntp/0001-libntp-Do-not-use-PTHREAD_STACK_MIN-on-glibc.patch]
|
|
||||||
Signed-off-by: Alexey Brodkin <abrokdin@synopsys.com>
|
|
||||||
---
|
|
||||||
libntp/work_thread.c | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/libntp/work_thread.c b/libntp/work_thread.c
|
|
||||||
index 03a5647..3ddd751 100644
|
|
||||||
--- a/libntp/work_thread.c
|
|
||||||
+++ b/libntp/work_thread.c
|
|
||||||
@@ -41,7 +41,7 @@
|
|
||||||
#ifndef THREAD_MINSTACKSIZE
|
|
||||||
# define THREAD_MINSTACKSIZE (64U * 1024)
|
|
||||||
#endif
|
|
||||||
-#ifndef __sun
|
|
||||||
+#if !defined(__sun) && !defined(__GLIBC__)
|
|
||||||
#if defined(PTHREAD_STACK_MIN) && THREAD_MINSTACKSIZE < PTHREAD_STACK_MIN
|
|
||||||
# undef THREAD_MINSTACKSIZE
|
|
||||||
# define THREAD_MINSTACKSIZE PTHREAD_STACK_MIN
|
|
||||||
--
|
|
||||||
2.32.0
|
|
||||||
|
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
# From http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-4.2.8p15.tar.gz.md5
|
# From https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2.8p17.tar.gz.sha256
|
||||||
md5 e1e6b23d2fc75cced41801dbcd6c2561 ntp-4.2.8p15.tar.gz
|
sha256 103dd272e6a66c5b8df07dce5e9a02555fcd6f1397bdfb782237328e89d3a866 ntp-4.2.8p17.tar.gz
|
||||||
# Calculated based on the hash above
|
# Locally computed
|
||||||
sha256 f65840deab68614d5d7ceb2d0bb9304ff70dcdedd09abb79754a87536b849c19 ntp-4.2.8p15.tar.gz
|
sha256 06246b8c15ccc1a1873c78525c810f0802e68f383e79ee041e06d1ab9cbf80a4 COPYRIGHT
|
||||||
sha256 957e6a13445cc61ab1ca3dc80d8c269cf9b0a6d9eaec20f9f39639b0b3e66ee8 COPYRIGHT
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
NTP_VERSION_MAJOR = 4.2
|
NTP_VERSION_MAJOR = 4.2
|
||||||
NTP_VERSION_MINOR = 8
|
NTP_VERSION_MINOR = 8
|
||||||
NTP_VERSION_POINT = 15
|
NTP_VERSION_POINT = 17
|
||||||
NTP_VERSION = $(NTP_VERSION_MAJOR).$(NTP_VERSION_MINOR)p$(NTP_VERSION_POINT)
|
NTP_VERSION = $(NTP_VERSION_MAJOR).$(NTP_VERSION_MINOR)p$(NTP_VERSION_POINT)
|
||||||
NTP_SITE = https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-$(NTP_VERSION_MAJOR)
|
NTP_SITE = https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-$(NTP_VERSION_MAJOR)
|
||||||
NTP_DEPENDENCIES = host-pkgconf libevent
|
NTP_DEPENDENCIES = host-pkgconf libevent
|
||||||
|
|||||||
Reference in New Issue
Block a user