Subject: Re: pkg/36655: pkgtools/pkg_install: fails to build on linux
To: None <gnats-bugs@NetBSD.org>
From: Tobias Nygren <tnn@NetBSD.org>
List: pkgsrc-bugs
Date: 07/16/2007 21:53:58
> +#ifdef __USE_GNU
> +		t_pvfile = pvstat.st_ctime;
> +#else
>  		t_pvfile = pvstat.st_ctimespec.tv_sec;
> +#endif

Regarding the above: st_ctime is SUSv3, not GNU :-)
I don't see a reason for using st_ctimespec at all, since
we don't look at the nanosecond part.
(The fix is needed on HP-UX as well)