derick Fri Feb 22 09:47:19 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/date/lib timelib.h Log: - MFH: Fixed bug #44209: strtotime doesn't support 64 bit timestamps. http://cvs.php.net/viewvc.cgi/php-src/ext/date/lib/timelib.h?r1=1.10.2.11.2.3.2.2&r2=1.10.2.11.2.3.2.3&diff_format=u Index: php-src/ext/date/lib/timelib.h diff -u php-src/ext/date/lib/timelib.h:1.10.2.11.2.3.2.2 php-src/ext/date/lib/timelib.h:1.10.2.11.2.3.2.3 --- php-src/ext/date/lib/timelib.h:1.10.2.11.2.3.2.2 Sun Jan 13 15:16:02 2008 +++ php-src/ext/date/lib/timelib.h Fri Feb 22 09:47:19 2008 @@ -16,12 +16,15 @@ +----------------------------------------------------------------------+ */ -/* $Id: timelib.h,v 1.10.2.11.2.3.2.2 2008/01/13 15:16:02 derick Exp $ */ +/* $Id: timelib.h,v 1.10.2.11.2.3.2.3 2008/02/22 09:47:19 derick Exp $ */ #ifndef __TIMELIB_H__ #define __TIMELIB_H__ #include "timelib_structs.h" +#if HAVE_LIMITS_H +#include <limits.h> +#endif #define TIMELIB_NONE 0x00 #define TIMELIB_OVERRIDE_TIME 0x01
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php