aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/config-win32.h10
-rw-r--r--lib/config-win32ce.h10
-rw-r--r--src/config-win32.h10
3 files changed, 30 insertions, 0 deletions
diff --git a/lib/config-win32.h b/lib/config-win32.h
index 8e57b1454..031eda54a 100644
--- a/lib/config-win32.h
+++ b/lib/config-win32.h
@@ -353,6 +353,16 @@
#define _CRT_NONSTDC_NO_DEPRECATE 1
#endif
+/* VS2005 and later dafault size for time_t is 64-bit, unless */
+/* _USE_32BIT_TIME_T has been defined to get a 32-bit time_t. */
+#if defined(_MSC_VER) && (_MSC_VER >= 1400)
+# ifndef _USE_32BIT_TIME_T
+# define SIZEOF_TIME_T 8
+# else
+# define SIZEOF_TIME_T 4
+# endif
+#endif
+
/* VS2008 does not support Windows build targets prior to WinXP, */
/* so, if no build target has been defined we will target WinXP. */
#if defined(_MSC_VER) && (_MSC_VER >= 1500)
diff --git a/lib/config-win32ce.h b/lib/config-win32ce.h
index 7531d4b1f..6c0fb411f 100644
--- a/lib/config-win32ce.h
+++ b/lib/config-win32ce.h
@@ -314,6 +314,16 @@
#define _CRT_NONSTDC_NO_DEPRECATE 1
#endif
+/* VS2005 and later dafault size for time_t is 64-bit, unless */
+/* _USE_32BIT_TIME_T has been defined to get a 32-bit time_t. */
+#if defined(_MSC_VER) && (_MSC_VER >= 1400)
+# ifndef _USE_32BIT_TIME_T
+# define SIZEOF_TIME_T 8
+# else
+# define SIZEOF_TIME_T 4
+# endif
+#endif
+
/* ---------------------------------------------------------------- */
/* LDAP SUPPORT */
/* ---------------------------------------------------------------- */
diff --git a/src/config-win32.h b/src/config-win32.h
index e6c42e501..6aaac0032 100644
--- a/src/config-win32.h
+++ b/src/config-win32.h
@@ -187,6 +187,16 @@
#define _CRT_NONSTDC_NO_DEPRECATE 1
#endif
+/* VS2005 and later dafault size for time_t is 64-bit, unless */
+/* _USE_32BIT_TIME_T has been defined to get a 32-bit time_t. */
+#if defined(_MSC_VER) && (_MSC_VER >= 1400)
+# ifndef _USE_32BIT_TIME_T
+# define SIZEOF_TIME_T 8
+# else
+# define SIZEOF_TIME_T 4
+# endif
+#endif
+
/* VS2008 does not support Windows build targets prior to WinXP, */
/* so, if no build target has been defined we will target WinXP. */
#if defined(_MSC_VER) && (_MSC_VER >= 1500)