[devel] Added PNG_CONVERT_tIME_SUPPORTED macro.
diff --git a/ANNOUNCE b/ANNOUNCE
index 9d55e01..d50209f 100644
--- a/ANNOUNCE
+++ b/ANNOUNCE
@@ -599,6 +599,8 @@
     time.h "tm" structure
 
 version 1.4.0beta91 [November 2, 2009]
+  Patched ltmain.sh for wince support.
+  Added PNG_CONVERT_tIME_SUPPORTED macro.
 
 Send comments/corrections/commendations to png-mng-implement at lists.sf.net
 (subscription required; visit
diff --git a/CHANGES b/CHANGES
index 9df7aed..3e843ee 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2285,6 +2285,8 @@
     time.h "tm" structure
 
 version 1.4.0beta91 [November 2, 2009]
+  Patched ltmain.sh for wince support.
+  Added PNG_CONVERT_tIME_SUPPORTED macro.
 
 Send comments/corrections/commendations to png-mng-implement at lists.sf.net
 (subscription required; visit
diff --git a/png.h b/png.h
index 770a134..5b375cb 100644
--- a/png.h
+++ b/png.h
@@ -1441,18 +1441,15 @@
    PNGARG((png_structp png_ptr, png_timep ptime));
 #endif
 
-#ifdef PNG_WRITE_tIME_SUPPORTED
+#ifdef PNG_CONVERT_tIME_SUPPORTED
 /* Convert from a struct tm to png_time */
-#  ifndef _WIN32_WCE
-/* "tm" structure is not supported on WindowsCE */
 extern PNG_EXPORT(void,png_convert_from_struct_tm) PNGARG((png_timep ptime,
    struct tm FAR * ttime));
 
 /* Convert from time_t to png_time.  Uses gmtime() */
 extern PNG_EXPORT(void,png_convert_from_time_t) PNGARG((png_timep ptime,
    time_t ttime));
-#  endif /* _WIN32_WCE */
-#endif /* PNG_WRITE_tIME_SUPPORTED */
+#endif /* PNG_CONVERT_tIME_SUPPORTED */
 
 #ifdef PNG_READ_EXPAND_SUPPORTED
 /* Expand data to 24-bit RGB, or 8-bit grayscale, with alpha if available. */
diff --git a/pngconf.h b/pngconf.h
index 89fb2d1..a7351f2 100644
--- a/pngconf.h
+++ b/pngconf.h
@@ -997,9 +997,16 @@
 #  endif
 #endif
 
-#endif /* PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED */
+#ifndef PNG_NO_CONVERT_tIME
+# ifndef _WIN32_WCE
+/* The "tm" structure is not supported on WindowsCE */
+#  ifndef PNG_CONVERT_tIME_SUPPORTED
+#    define PNG_CONVERT_tIME_SUPPORTED
+#   endif
+# endif
+#endif
 
-#define PNG_CONVERT_tIME_SUPPORTED (PNG_tIME_SUPPORTED && !WIN32_WCE)
+#endif /* PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED */
 
 #if !defined(PNG_NO_WRITE_FILTER) && !defined(PNG_WRITE_FILTER_SUPPORTED)
 #  define PNG_WRITE_FILTER_SUPPORTED