Mercurial > hg > octave-lyh
changeset 9424:69d05d1a63b9
configure.in: don't use system strftime on MinGW systems
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 09 Jul 2009 15:04:34 -0400 |
parents | f284e2a26ff9 |
children | e9f1329ed504 |
files | ChangeLog configure.in |
diffstat | 2 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-07-09 John W. Eaton <jwe@octave.org> + + * configure.in: Don't use system strftime on MinGW systems. + 2009-06-29 Jaroslav Hajek <highegg@gmail.com> * NEWS: Correct info.
--- a/configure.in +++ b/configure.in @@ -1654,8 +1654,8 @@ esac case "$canonical_host_type" in - *-*-msdosmsvc) - ## The %T format specifier for strftime is reportedly broken, + *-*-msdosmsvc | *-*-mingw*) + ## The %T and %e format specifiers for strftime are not implemented ## so use our version. We could use an actual configure test ## for this. ;;