mirror of
https://github.com/php/php-src.git
synced 2024-11-30 21:35:36 +08:00
11 lines
274 B
JavaScript
11 lines
274 B
JavaScript
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
ARG_ENABLE("json", "JavaScript Object Serialization support", "yes");
|
|
|
|
if (PHP_JSON != "no") {
|
|
EXTENSION('json', 'json.c', PHP_JSON_SHARED, "");
|
|
ADD_SOURCES(configure_module_dirname, "JSON_parser.c utf8_decode.c utf8_to_utf16.c", "json");
|
|
}
|
|
|