Compare commits

...

2 Commits

Author SHA1 Message Date
Richard P. Curnow
5331e1a146 Update NEWS for 1.23 2007-12-02 14:53:09 +00:00
Richard P. Curnow
eeac7b7ca0 Define io_linux.h constants for x86_64
Based on thread from chrony-users, October 2007.
2007-12-02 14:39:50 +00:00
2 changed files with 23 additions and 1 deletions

22
NEWS
View File

@@ -1,3 +1,25 @@
New in version 1.23
===================
* Support for MIPS, x86_64, sparc, alpha, arm, FreeBSD
* Fix serious sign-extension error in handling IP addresses
* RTC support can be excluded at compile time
* Make sources gcc-4 compatible
* Fix various compiler warnings
* Handle fluctuations in peer distance better.
* Fixed handling of stratum zero.
* Fix various problems for 64-bit systems
* Flush chronyc output streams after each command, to allow it to be driven
through pipes
* Manpage improvements
Version 1.22
============
This release number was claimed by a release that Mandriva made to patch
important bugs in 1.21. The official numbering has jumped to 1.23 as a
consequence.
New in version 1.21 New in version 1.21
=================== ===================

View File

@@ -6,7 +6,7 @@
/* Hmm. These constants vary a bit between systems. */ /* Hmm. These constants vary a bit between systems. */
/* (__sh__ includes both sh and sh64) */ /* (__sh__ includes both sh and sh64) */
#if defined(__i386__) || defined(__sh__) || defined(__arm__) #if defined(__i386__) || defined(__sh__) || defined(__arm__)||defined(__x86_64__)
#define CHRONY_IOC_NRBITS 8 #define CHRONY_IOC_NRBITS 8
#define CHRONY_IOC_TYPEBITS 8 #define CHRONY_IOC_TYPEBITS 8
#define CHRONY_IOC_SIZEBITS 14 #define CHRONY_IOC_SIZEBITS 14