Tuesday, November 02, 2021

Re: lang/dmd: Prepare for i386 package

On 2021/11/02 03:58, Brian Callahan wrote:
> There's no bump, since there is no change in the resulting package on amd64.
> For amd64, we are just variablizing every instance of 64 to ${MODEL} in the
> port Makefile. The i386-specific patch does not get applied on amd64.

arch-specific patches are annoying to deal with for uodates, is there a way
to do it with a single patch? (i have no idea if D has anything like cpp
that could be used)

if it's the only way then ok, just trying to save later trouble

${MODEL} is good, that is definitely ok

> + if (i == -1) // error, errno is set
> + return corrupt(__LINE__);
> +- om.file_time = statbuf.st_ctime;
> ++ om.file_time = cast(int)statbuf.st_ctime;

32-bit timestamps :-(

No comments:

Post a Comment