mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
![]() Autoconf 2.59d (released in 2006) [1] started promoting several macros as not relevant for newer systems anymore, including the `AC_HEADER_STDC`. This macro checks if given system has C89 compliant header files such as `<string.h>`, `<stdlib.h>`, `<stdarg.h>`, `<float.h>`,... and defines the `STDC_HEADERS` symbol [2]. Case is that current systems should be well supported with at least C89 standard headers [3]. Given headers are still additionally checked with the `AC_PROG_CC` macro, yet not needed anyway. Additionally, the HAVE_MEMCPY check has been removed. The memcpy function is standardized by C89 and later. Refs: [1] http://git.savannah.gnu.org/cgit/autoconf.git/tree/NEWS [2] https://www.gnu.org/software/autoconf/manual/autoconf-2.69/autoconf.html [3] https://port70.net/~nsz/c/c89/c89-draft.html#4.1.2 |
||
---|---|---|
.. | ||
tests | ||
config.m4 | ||
config.w32 | ||
CREDITS | ||
json.c | ||
json_encoder.c | ||
json_parser.y | ||
json_scanner.re | ||
Makefile.frag | ||
Makefile.frag.w32 | ||
php_json.h | ||
php_json_encoder.h | ||
php_json_parser.h | ||
php_json_scanner.h | ||
README |
JSON ========== This extension implements the JavaScript Object Notation (JSON) data-interchange format as specified in RFC 7159 The parser is implemented using re2c and Bison. The used versions of both tools for generating files in the repository are following: re2c 0.16 Bison 3.0.4 It is recommended to do all contributions to the JSON extension through the Github Pull Requests and preferably ping @bukka who maintains the extension.