diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-01-28 00:48:58 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-01-28 00:50:25 +0100 |
commit | 28b53508aa4cd06933fa1bcbbaa791ad12ecbf51 (patch) | |
tree | 2d851b8805a08b2b44103f1c6c6a05ae002f99f4 /Makefile.am | |
parent | 4adf780d61796c45f58100ed15d9c9a0a3c562fc (diff) | |
download | gnumach-28b53508aa4cd06933fa1bcbbaa791ad12ecbf51.tar.gz gnumach-28b53508aa4cd06933fa1bcbbaa791ad12ecbf51.tar.bz2 gnumach-28b53508aa4cd06933fa1bcbbaa791ad12ecbf51.zip |
Set time_t type to 64bit
In order to fix year 2038 limit in RTC driver
* include/sys/types.h (time_t): Bump type to 64bit.
* Makefile.am (clib_routines): Also allow __moddi3.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 11312a1e..d1968b85 100644 --- a/Makefile.am +++ b/Makefile.am @@ -170,7 +170,7 @@ noinst_PROGRAMS += \ # This is the list of routines we decide is OK to steal from the C library. clib_routines := htonl htons ntohl ntohs \ udivdi3 __udivdi3 __udivmoddi4 __umoddi3 \ - __divdi3 \ + __divdi3 __moddi3 \ __rel_iplt_start __rel_iplt_end \ __ffsdi2 ffs \ _START _start etext _edata end _end # actually ld magic, not libc. |