diff options
author | Alex Samorukov <samm@os2.kiev.ua> | 2021-01-04 01:28:39 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-01-04 13:28:28 +0100 |
commit | f1baa4a6b4239cff069aa0b257365b12fb6ee130 (patch) | |
tree | 8721b0fc011fc3bdb6c94d3918530d27b200e4ae /networking/ntpd.c | |
parent | 28759d0e95cff70df9e4db319e0bcf310fbe7197 (diff) |
Fix ntpd compilcation on the FreeBSD
FreeBSD using different constant names, defining them inline
Signed-off-by: Alex Samorukov <samm@os2.kiev.ua>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/ntpd.c')
-rw-r--r-- | networking/ntpd.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/networking/ntpd.c b/networking/ntpd.c index 46d8f3495..1f17b08ef 100644 --- a/networking/ntpd.c +++ b/networking/ntpd.c @@ -113,6 +113,13 @@ # define IPTOS_DSCP_AF21 0x48 #endif +#if defined(__FreeBSD__) +/* see sys/timex.h */ +# define adjtimex ntp_adjtime +# define ADJ_OFFSET MOD_OFFSET +# define ADJ_STATUS MOD_STATUS +# define ADJ_TIMECONST MOD_TIMECONST +#endif /* Verbosity control (max level of -dddd options accepted). * max 6 is very talkative (and bloated). 3 is non-bloated, |