diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-02-26 09:59:27 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-06-15 10:42:11 -0300 |
commit | 372d2ef1f9ef67a679ae5143ab3bac8997b80160 (patch) | |
tree | 05ba66dbc2b337696eb351fe58117a1503465bdc /support/Makefile | |
parent | e9bc2b3b38ff8a68248cdfe91b0d28c154382ec2 (diff) | |
download | glibc-372d2ef1f9ef67a679ae5143ab3bac8997b80160.tar glibc-372d2ef1f9ef67a679ae5143ab3bac8997b80160.tar.gz glibc-372d2ef1f9ef67a679ae5143ab3bac8997b80160.tar.bz2 glibc-372d2ef1f9ef67a679ae5143ab3bac8997b80160.zip |
libsupport: Add 64-bit time_t support for stat functions
The patch adds redirections for xstat, xlstat, and xfstat when
_TIME_BITS=64 is defined.
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 'support/Makefile')
-rw-r--r-- | support/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/support/Makefile b/support/Makefile index e27b9b164e..f3ebaa8d2e 100644 --- a/support/Makefile +++ b/support/Makefile @@ -40,7 +40,9 @@ libsupport-routines = \ resolv_test \ set_fortify_handler \ support-xfstat \ + support-xfstat-time64 \ support-xstat \ + support-xstat-time64 \ support_become_root \ support_can_chroot \ support_capture_subprocess \ @@ -117,6 +119,7 @@ libsupport-routines = \ xlisten \ xlseek \ xlstat \ + xlstat-time64 \ xmalloc \ xmemstream \ xmkdir \ |