From 2dff153b23c7c874e8c98e1f3bda2e00cde0bd71 Mon Sep 17 00:00:00 2001 From: Lior Kaplan Date: Thu, 17 Jul 2014 22:58:36 +0300 Subject: Enable build without atoll (e.g old AIX flavours) --- ext/date/php_date.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ext/date/php_date.c b/ext/date/php_date.c index 595b0b040b..4259bf0fcb 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -50,7 +50,11 @@ static inline long long php_date_llabs( long long i ) { return i >= 0 ? i : -i; int st = snprintf(s, len, "%lld", i); \ s[st] = '\0'; \ } while (0); +#ifdef HAVE_ATOLL # define DATE_A64I(i, s) i = atoll(s) +#else +# define DATE_A64I(i, s) i = strtoll(s, NULL, 10) +#endif #endif /* {{{ arginfo */ -- cgit v1.2.1