From 7c46f35da3824afe558eadafdb989f477d78ef32 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Fri, 22 Feb 2008 09:47:19 +0000 Subject: [PATCH] - MFH: Fixed bug #44209: strtotime doesn't support 64 bit timestamps. --- ext/date/lib/timelib.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ext/date/lib/timelib.h b/ext/date/lib/timelib.h index 54612dc14d..1960a63de9 100644 --- a/ext/date/lib/timelib.h +++ b/ext/date/lib/timelib.h @@ -22,6 +22,9 @@ #define __TIMELIB_H__ #include "timelib_structs.h" +#if HAVE_LIMITS_H +#include +#endif #define TIMELIB_NONE 0x00 #define TIMELIB_OVERRIDE_TIME 0x01 -- 2.40.0