mirror of
https://github.com/php/php-src.git
synced 2025-08-17 14:38:49 +02:00
11 lines
342 B
JavaScript
11 lines
342 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, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
|
|
ADD_SOURCES(configure_module_dirname, "JSON_parser.c utf8_decode.c", "json");
|
|
PHP_INSTALL_HEADERS("ext/json/", "php_json.h");
|
|
}
|
|
|