Re: [chrony-dev] [chrony-announce] chrony-4.0-pre1 released

2020-03-16 Thread Bryan Christianson
That makes sense - I have only built it on Mojave (10.14.6) and Catalina (10.15.3), which both have SYS_TIMEX and CLOCK_GETTIME. The reason for failure is CLOCK_GETTIME was introduced in 10.12 and SYS_TIMEX not until 10.13, hence the need for in 10.12 Sorry about that. > On 17/03/2020, at 4:3

[chrony-dev] Re: [chrony-announce] chrony-4.0-pre1 released

2020-03-16 Thread David Bohman
4.0-pre1 does not build on my macOS Sierra system. The following patch fixes it: diff --git a/sys_macosx.c b/sys_macosx.c index 701c078..1b0fc4e 100644 --- a/sys_macosx.c +++ b/sys_macosx.c @@ -46,8 +46,9 @@ #include "privops.h" #include "util.h" -#ifdef HAVE_MACOS_SYS_TIMEX #include

[chrony-dev] chrony-4.0-pre1 released

2020-03-16 Thread Miroslav Lichvar
The first prerelease for chrony-4.0 is now available. The main new feature is support for the Network Time Security (NTS) authentication mechanism based on TLS and AEAD, which enables NTP servers to securely provide time to a large number of clients (no need to share keys in the key file). GnuTLS

[chrony-dev] [GIT] chrony/chrony.git annotated tag 4.0-pre1 created. 4.0-pre1

2020-03-16 Thread git
This is an automated email from git. It was generated because a ref change was pushed to the "chrony/chrony.git" repository. The annotated tag, 4.0-pre1 has been created at 336fbe754ef90df1a74220c7c80be58bfa79c85d (tag) tagging 8b50a8298a45918eb3e4e977ae6828da5920bc9c (commit) repla

[chrony-dev] [GIT] chrony/chrony.git branch master updated. 3.5-189-g8b50a82

2020-03-16 Thread git
This is an automated email from git. It was generated because a ref change was pushed to the "chrony/chrony.git" repository. The branch, master has been updated via 8b50a8298a45918eb3e4e977ae6828da5920bc9c (commit) via 3eab3290426a8847910cc1e7ba76a161ae286220 (commit) from 5

Re: [chrony-dev] [PATCH] macOS - weak linkage of clock_gettime

2020-03-16 Thread Bryan Christianson
> On 16/03/2020, at 11:10 PM, Miroslav Lichvar wrote: > > On Fri, Mar 13, 2020 at 08:33:00AM +1300, Bryan Christianson wrote: >> Earlier versions of macOS do not provide clock_gettime(). This patch checks >> for clock_gettime() at run-time and falls back to gettimeofday() if the >> symbol is

Re: [chrony-dev] [PATCH] macOS - weak linkage of clock_gettime

2020-03-16 Thread Miroslav Lichvar
On Fri, Mar 13, 2020 at 08:33:00AM +1300, Bryan Christianson wrote: > Earlier versions of macOS do not provide clock_gettime(). This patch checks > for clock_gettime() at run-time and falls back to gettimeofday() if the > symbol is not present. The patch looks good to me. I think I'll change the