diff options
author | Janne Blomqvist <jb@gcc.gnu.org> | 2009-05-29 23:56:20 +0300 |
---|---|---|
committer | Janne Blomqvist <jb@gcc.gnu.org> | 2009-05-29 23:56:20 +0300 |
commit | 2017c37012b695fe8ab6604a2f7c415d964e7839 (patch) | |
tree | b84f225a725d0a72b45acb270ce8b68993bf148e /libgfortran/config.h.in | |
parent | bb870b58e27150a19d8e456074e348e9e768d7c1 (diff) | |
download | gcc-2017c37012b695fe8ab6604a2f7c415d964e7839.zip gcc-2017c37012b695fe8ab6604a2f7c415d964e7839.tar.gz gcc-2017c37012b695fe8ab6604a2f7c415d964e7839.tar.bz2 |
Fix PR40190; use localtime_r, gmtime_r, add fallback implementations
From-SVN: r147985
Diffstat (limited to 'libgfortran/config.h.in')
-rw-r--r-- | libgfortran/config.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libgfortran/config.h.in b/libgfortran/config.h.in index 3542638..3bab479 100644 --- a/libgfortran/config.h.in +++ b/libgfortran/config.h.in @@ -426,6 +426,9 @@ /* libc includes getuid */ #undef HAVE_GETUID +/* Define to 1 if you have the `gmtime_r' function. */ +#undef HAVE_GMTIME_R + /* Define if the compiler has a thread header that is non single. */ #undef HAVE_GTHR_DEFAULT @@ -507,6 +510,9 @@ /* libm includes llroundl */ #undef HAVE_LLROUNDL +/* Define to 1 if you have the `localtime_r' function. */ +#undef HAVE_LOCALTIME_R + /* libm includes log */ #undef HAVE_LOG |