diff options
author | Alan Modra <amodra@gmail.com> | 2021-08-04 14:44:08 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-08-04 14:44:08 +0930 |
commit | 47fcfcbadce36c7ccc00c69b4c80717a0d6b9288 (patch) | |
tree | cbc7d20e8eb72176ee93a03258967dd622ee0fae /binutils/rename.c | |
parent | 010e444b2f731ca56b6fba7f4dd47df17d6e7008 (diff) | |
download | gdb-47fcfcbadce36c7ccc00c69b4c80717a0d6b9288.zip gdb-47fcfcbadce36c7ccc00c69b4c80717a0d6b9288.tar.gz gdb-47fcfcbadce36c7ccc00c69b4c80717a0d6b9288.tar.bz2 |
PR28156, rename.c doesn't compile with MinGW
Guard against lack of struct timespec definition.
PR 28156
* rename.c (get_stat_atime, get_stat_mtime): Don't compile
unless HAVE_UTIMENSAT is defined.
Diffstat (limited to 'binutils/rename.c')
-rw-r--r-- | binutils/rename.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/binutils/rename.c b/binutils/rename.c index 8826917..48ae301 100644 --- a/binutils/rename.c +++ b/binutils/rename.c @@ -131,6 +131,7 @@ get_stat_mtime_ns (struct stat const *st ATTRIBUTE_UNUSED) # endif } +#if defined HAVE_UTIMENSAT /* Return *ST's access time. */ static inline struct timespec get_stat_atime (struct stat const *st) @@ -158,6 +159,7 @@ get_stat_mtime (struct stat const *st) return t; #endif } +#endif /* End FIXME. */ /* Set the times of the file DESTINATION to be the same as those in |