* configure.ac: Check for (struct stat)::st_mtim

* fileread.cc (File_read::get_mtime): Use st_mtim if available.
	* config.in: Regenerate.
	* configure: Regenerate.
This commit is contained in:
Ian Lance Taylor
2009-11-06 15:47:06 +00:00
parent dec397b2de
commit 5d329b7db9
5 changed files with 60 additions and 2 deletions

View File

@ -823,9 +823,11 @@ File_read::get_mtime()
if (fstat(this->descriptor_, &file_stat) < 0)
gold_fatal(_("%s: stat failed: %s"), this->name_.c_str(),
strerror(errno));
// TODO: do a configure check if st_mtim is present and get the
// nanoseconds part if it is.
#ifdef HAVE_STAT_ST_MTIM
return Timespec(file_stat.st_mtim.tv_sec, file_stat.st_mtim.tv_nsec);
#else
return Timespec(file_stat.st_mtime, 0);
#endif
}
// Open the file.