Re: [libgo] Use stat_atim.go on Solaris 12+

2015-09-11 Thread Rainer Orth
Ian Lance Taylor writes: > On Wed, Aug 26, 2015 at 4:14 AM, Rainer Orth > wrote: >> Solaris 12 changes the stat_[amc]tim members of struct stat from >> timestruc_t to timespec_t for XPG7 compatiblity, thus breaking the libgo >> build. The following patch checks for this change and uses the comm

Re: [libgo] Use stat_atim.go on Solaris 12+

2015-09-10 Thread Ian Lance Taylor
On Wed, Aug 26, 2015 at 4:14 AM, Rainer Orth wrote: > Solaris 12 changes the stat_[amc]tim members of struct stat from > timestruc_t to timespec_t for XPG7 compatiblity, thus breaking the libgo > build. The following patch checks for this change and uses the common > stat_atim.go if appropriate.

Re: [libgo] Use stat_atim.go on Solaris 12+

2015-09-03 Thread Rainer Orth
Rainer Orth writes: > Solaris 12 changes the stat_[amc]tim members of struct stat from > timestruc_t to timespec_t for XPG7 compatiblity, thus breaking the libgo > build. The following patch checks for this change and uses the common > stat_atim.go if appropriate. > > Btw., I noticed that go/os/

[libgo] Use stat_atim.go on Solaris 12+

2015-08-26 Thread Rainer Orth
Solaris 12 changes the stat_[amc]tim members of struct stat from timestruc_t to timespec_t for XPG7 compatiblity, thus breaking the libgo build. The following patch checks for this change and uses the common stat_atim.go if appropriate. Btw., I noticed that go/os/stat_atim.go and stat_dragonfly.g