derick Fri Feb 22 09:47:10 2008 UTC Modified files: /php-src/ext/date/lib timelib.h Log: - 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.26&r2=1.27&diff_format=u Index: php-src/ext/date/lib/timelib.h diff -u php-src/ext/date/lib/timelib.h:1.26 php-src/ext/date/lib/timelib.h:1.27 --- php-src/ext/date/lib/timelib.h:1.26 Sun Jan 13 15:16:48 2008 +++ php-src/ext/date/lib/timelib.h Fri Feb 22 09:47:10 2008 @@ -16,12 +16,15 @@ +----------------------------------------------------------------------+ */ -/* $Id: timelib.h,v 1.26 2008/01/13 15:16:48 derick Exp $ */ +/* $Id: timelib.h,v 1.27 2008/02/22 09:47:10 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