diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-03-03 09:00:13 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-06-15 10:42:11 -0300 |
commit | 70961aee1823481caac6e00a40cf1f2bdbf7ffb5 (patch) | |
tree | ecb5da43310a12d98e6c98dbd63dacb9c3f60394 /io/Makefile | |
parent | 84f7ce84474c1648ce96884f1c91ca7b97ca3fc2 (diff) | |
download | glibc-70961aee1823481caac6e00a40cf1f2bdbf7ffb5.tar glibc-70961aee1823481caac6e00a40cf1f2bdbf7ffb5.tar.gz glibc-70961aee1823481caac6e00a40cf1f2bdbf7ffb5.tar.bz2 glibc-70961aee1823481caac6e00a40cf1f2bdbf7ffb5.zip |
io: Add fts64 with 64-bit time_t support
Similar to glob, fts routines passes a stat pointer that might
differ of size and layout when 64-bit time API is used.
Checked on i686-linux-gnu and x86_64-linux-gnu.
Reviewed-by: Lukasz Majewski <lukma@denx.de>
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'io/Makefile')
-rw-r--r-- | io/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/io/Makefile b/io/Makefile index a22492f3f3..12c832cfcb 100644 --- a/io/Makefile +++ b/io/Makefile @@ -54,7 +54,8 @@ routines := \ posix_fadvise posix_fadvise64 \ posix_fallocate posix_fallocate64 \ sendfile sendfile64 copy_file_range \ - utimensat futimens file_change_detection + utimensat futimens file_change_detection \ + fts64-time64 others := pwd test-srcs := ftwtest @@ -102,6 +103,7 @@ CFLAGS-statvfs.c += -fexceptions CFLAGS-fstatvfs.c += -fexceptions CFLAGS-fts.c += -Wno-uninitialized $(uses-callbacks) -fexceptions CFLAGS-fts64.c += -Wno-uninitialized $(uses-callbacks) -fexceptions +CFLAGS-fts64-time64.c += -Wno-uninitialized $(uses-callbacks) -fexceptions CFLAGS-ftw.c += $(uses-callbacks) -fexceptions CFLAGS-ftw64.c += $(uses-callbacks) -fexceptions CFLAGS-posix_fallocate.c += -fexceptions |