mirror of
https://github.com/php/php-src.git
synced 2025-01-09 20:44:33 +08:00
12 lines
323 B
JavaScript
12 lines
323 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");
|
|
PHP_INSTALL_HEADERS("ext/json/", "php_json.h");
|
|
}
|
|
|