From owner-freebsd-hackers Tue Feb 4 16:25:04 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id QAA27277 for hackers-outgoing; Tue, 4 Feb 1997 16:25:04 -0800 (PST) Received: from louie.udel.edu (louie.udel.edu [128.175.1.3]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id QAA27260 for ; Tue, 4 Feb 1997 16:24:55 -0800 (PST) Received: from snow-white.ee.udel.edu by louie.udel.edu id aa00375; 4 Feb 97 19:05 EST Received: from louie.udel.edu by snow-white.ee.udel.edu id aa23407; 4 Feb 97 19:05 EST To: Joerg Wunsch cc: John Hay , Steve Logue , freebsd-hackers@freebsd.org Subject: Re: xntp3-5.89.2 & FreeBSD 2.2-GAMMA won't compile In-reply-to: Your message of "Tue, 04 Feb 1997 21:36:51 +0100." Date: Tue, 04 Feb 1997 19:01:59 -0500 From: stenn@whimsy.udel.edu Message-ID: <9702041901.aa26048@whimsy.udel.edu> Source-Info: From (or Sender) name not authenticated. Sender: owner-hackers@freebsd.org X-Loop: FreeBSD.org Precedence: bulk It looks like I'll need to add this patch to the sys/timex.h file in the xntpd distribution: --- timex.h- Sat Jul 15 04:06:10 1995 +++ timex.h Sun Feb 2 02:56:21 1997 @@ -284,6 +284,17 @@ }; #ifdef __FreeBSD__ +/* + * sysctl identifiers underneath kern.ntp_pll + */ +#define NTP_PLL_GETTIME 1 /* used by ntp_gettime() */ +#define NTP_PLL_MAXID 2 /* number of valid ids */ + +#define NTP_PLL_NAMES { \ + { 0, 0 }, \ + { "gettime", CTLTYPE_STRUCT }, \ + } + #ifndef KERNEL #include Is there anything else I should add to the xntpd distribution to make life easier for us? Harlan