diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-18 22:53:24 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-18 22:53:24 +0200 |
commit | db51730df1817fc4b6ecf5a065c69fac518ad821 (patch) | |
tree | d7966f2f74b8f11cb6bb228a422bf4650e9bc7d9 /src/configure.ac | |
parent | 517f71ab17c265602465eaee3775dcfe8afe0478 (diff) | |
download | vim-git-db51730df1817fc4b6ecf5a065c69fac518ad821.tar.gz |
patch 8.1.1567: localtime_r() does not respond to $TZ changesv8.1.1567
Problem: Localtime_r() does not respond to $TZ changes.
Solution: If $TZ changes then call tzset(). (Tom Ryder)
Diffstat (limited to 'src/configure.ac')
-rw-r--r-- | src/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configure.ac b/src/configure.ac index dbf4f42b8..f7a71d079 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -3742,7 +3742,7 @@ AC_CHECK_FUNCS(fchdir fchown fchmod fsync getcwd getpseudotty \ memset mkdtemp nanosleep opendir putenv qsort readlink select setenv \ getpgid setpgid setsid sigaltstack sigstack sigset sigsetjmp sigaction \ sigprocmask sigvec strcasecmp strerror strftime stricmp strncasecmp \ - strnicmp strpbrk strtol tgetent towlower towupper iswupper \ + strnicmp strpbrk strtol tgetent towlower towupper iswupper tzset \ usleep utime utimes mblen ftruncate unsetenv posix_openpt) AC_FUNC_SELECT_ARGTYPES AC_FUNC_FSEEKO |