Control: reassign -1 kfreebsd-kernel-headers 10.0~5
Control: affects -1 src:ntp
Hello!
I'm experiencing the same problem when trying to build (upstream git
master of) util-linux in a schroot on falla.debian.org.
It seems like the <sys/timex.h> header is broken. It's missing
struct ntptimeval and get_ntptime(...) atleast.
I'm attaching a minimal test-case that builds fine on Linux.
Please make sure that another build attempt is triggered of "ntp"
et.al. once this problem has been fixed on kfreebsd-any.
(experimental_kfreebsd-amd64-dchroot)ah@falla:~$ dpkg -l
kfreebsd-kernel-headersDesired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-==============-============-============-=================================
ii kfreebsd-kerne 10.0~5 kfreebsd-amd kFreeBSD headers for development
(experimental_kfreebsd-amd64-dchroot)ah@falla:~$ dpkg -S
/usr/include/sys/timex.h
kfreebsd-kernel-headers: /usr/include/sys/timex.h
I'm updating the schroot now....
Regards,
Andreas Henriksson
#include <stdio.h>
#include <sys/timex.h>
int main (int argc, char **argv)
{
struct ntptimeval ntv;
ntp_gettime(&ntv);
return 0;
}