mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
Enable build without atoll (e.g old AIX flavours)
This commit is contained in:
parent
c186ce8fef
commit
84673485f5
@ -903,7 +903,11 @@ SAPI_API SAPI_POST_HANDLER_FUNC(rfc1867_post_handler) /* {{{ */
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!strcasecmp(param, "MAX_FILE_SIZE")) {
|
if (!strcasecmp(param, "MAX_FILE_SIZE")) {
|
||||||
|
#ifdef HAVE_ATOLL
|
||||||
max_file_size = atoll(value);
|
max_file_size = atoll(value);
|
||||||
|
#else
|
||||||
|
max_file_size = strtoll(value, NULL, 10);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
efree(param);
|
efree(param);
|
||||||
|
Loading…
Reference in New Issue
Block a user