changeset 12039:48d3e2d261e6 release-3-2-x

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 bc2f0067e140
children 5a68e3e748c5
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-07-21  Jaroslav Hajek  <highegg@gmail.com>
 
 	Version 3.2.2 released.
--- a/configure.in
+++ b/configure.in
@@ -1640,8 +1640,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.
   ;;