From: Derick Rethans Date: Fri, 22 Feb 2008 09:47:10 +0000 (+0000) Subject: - Fixed bug #44209: strtotime doesn't support 64 bit timestamps. X-Git-Tag: RELEASE_2_0_0a1~386 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f7c1c986e37e84f770788d6083c644ed1f5442b;p=php - Fixed bug #44209: strtotime doesn't support 64 bit timestamps. --- 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