From 80d8f7fdf3e98efb631d08a3481739ea0e52f36f Mon Sep 17 00:00:00 2001 From: Justin Weiss Date: Sun, 22 Sep 2019 19:14:07 -0700 Subject: Stop calling utime on 3ds The toolchain doesn't have utime defined, so these calls will fail. --- deps/flac-1.3.2/src/share/grabbag/file.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'deps/flac-1.3.2/src/share/grabbag') diff --git a/deps/flac-1.3.2/src/share/grabbag/file.c b/deps/flac-1.3.2/src/share/grabbag/file.c index 4cbef9d..0329bce 100644 --- a/deps/flac-1.3.2/src/share/grabbag/file.c +++ b/deps/flac-1.3.2/src/share/grabbag/file.c @@ -58,7 +58,9 @@ void grabbag__file_copy_metadata(const char *srcpath, const char *destpath) srctime.actime = srcstat.st_atime; srctime.modtime = srcstat.st_mtime; (void)flac_chmod(destpath, srcstat.st_mode); +#if !defined _3DS (void)flac_utime(destpath, &srctime); +#endif } } -- cgit v1.2.3