diff options
author | Derick Rethans <derick@php.net> | 2008-02-22 09:47:19 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2008-02-22 09:47:19 +0000 |
commit | 7c46f35da3824afe558eadafdb989f477d78ef32 (patch) | |
tree | bff69e6b556696e7c326b813f60a55fb17d43897 | |
parent | 116ae803763478bf3170ceac5edaed3a7ec0ce67 (diff) | |
download | php-git-7c46f35da3824afe558eadafdb989f477d78ef32.tar.gz |
- MFH: Fixed bug #44209: strtotime doesn't support 64 bit timestamps.
-rw-r--r-- | ext/date/lib/timelib.h | 3 |
1 files changed, 3 insertions, 0 deletions
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 <limits.h> +#endif #define TIMELIB_NONE 0x00 #define TIMELIB_OVERRIDE_TIME 0x01 |